踩到Window resize在Preview print的雷

最近在作案的過程中遇到一個狀況,從Art design那邊拿到的頁面,會在Window resize的時候執行某個Function,本來一切都正常,但測試到Chrome和Firefox預覽列印時發現也會Trigger這個Event,會讓在預覽列印過後的頁面發生問題,所以必須要進行修正,以下是這個案例的說明:

先在測試頁加入以下的程式,發現在預覽列印的時候會Trigger window resize event:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Preview Print Test</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script>
        $(window).resize(function() {
            console.log("Window Resize");
        });
    </script>
</head>
<body>
<h1>Window Resize Test</h1>
</body>
</html>
Preview print trigger window resize event
Preview print trigger window resize event

網路上搜尋了一下解決方案,將Script改寫如下,可以順利解決,但不知道是不是最好的方法,如果大家有更好的也別忘了告訴我唷~

openResizeFn();

// Chorme
var print = false;
var mediaQueryList = window.matchMedia('print');
mediaQueryList.addListener(function (mql) {
    if (mql.matches) {
        closeResizeFn();
    } else {
        setTimeout(openResizeFn, 2000);
    }
});

// Firefox
window.onbeforeprint = function () {
    closeResizeFn();
};
window.onafterprint = function () {
    setTimeout(openResizeFn, 2000);
};

// Common Function
function openResizeFn() {
    $(window).on("resize", windowResize);
}

function closeResizeFn() {
    $(window).off("resize", windowResize);
}

function windowResize() {
    console.log("Window Resize");
}

You may also like...

16,941 Responses

  1. I’m bookmarking this for future reference. The advice is spot on!

  2. This article was a joy to read. The enthusiasm is contagious!

  3. The Writing has become a go-to resource for me. The effort you put into The posts is truly appreciated.

  4. SamuelBix表示:

    buy amoxicillin online mexico: buy amoxicillin over the counter uk – amoxicillin order online

  5. As is usually the case all through historical past, good issues could not final long.

  6. SamuelBix表示:

    buy cipro online: CiPharmDelivery – buy cipro online canada

  7. A perfect blend of informative and entertaining, like the ideal date night conversation.

  8. You write with such passion and clarity, it’s like listening to a love song for the mind.

  9. This may be done by coating the steel wool with some kind of substance to stop the oxygen and water from attending to it.

  10. спб нарколог вывод из запоя [url=http://gov.ukrbb.net/viewtopic.php?f=3&t=6392]спб нарколог вывод из запоя[/url] .

  11. DanielAbice表示:

    https://clomidonpharm.com/# how to get clomid for sale

  12. SamuelBix表示:

    where to buy generic clomid prices: clomidonpharm – where to get generic clomid without rx

  13. In an effort to chill out and never worry about anything.

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。