踩到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,865 Responses

  1. Jamesknowl表示:

    https://mexicanpharmacy.store/# medicine in mexico pharmacies

  2. LarryHom表示:

    http://mexicanpharmacy.store/# purple pharmacy mexico price list

  3. kypit 1s_cnEt表示:

    сколько стоит программа 1с сколько стоит программа 1с .

  4. Brianchoky表示:

    https://canadianpharmacy.win/# canadian pharmacy drugs online

  5. kypit 1s_ujEt表示:

    купить 1с предприятие купить 1с предприятие .

  6. Jamestus表示:

    indian pharmacy online indianpharmacy com indian pharmacies safe

  7. kypit 1s_hfEt表示:

    купить 1с предприятие купить 1с предприятие .

  8. ClaytonGauct表示:

    medication from mexico pharmacy: medicine in mexico pharmacies – pharmacies in mexico that ship to usa

  9. Jamesknowl表示:

    https://canadianpharmacy.win/# canadian neighbor pharmacy

  10. Jamestus表示:

    buying prescription drugs in mexico online medicine in mexico pharmacies buying prescription drugs in mexico

  11. Jamesknowl表示:

    https://mexicanpharmacy.store/# п»їbest mexican online pharmacies

  12. LarryHom表示:

    http://mexicanpharmacy.store/# mexican rx online

  13. LarryHom表示:

    https://indianpharmacy.win/# indian pharmacy

  14. As market condition change these types of ‘stubborn’ traders are left behind and they get only loss.

  15. Jamesknowl表示:

    https://canadianpharmacy.win/# my canadian pharmacy reviews

  16. ClaytonGauct表示:

    canadian pharmacy sarasota: best online canadian pharmacy – canadian pharmacy mall

  17. LarryHom表示:

    https://indianpharmacy.win/# top online pharmacy india

  18. ClaytonGauct表示:

    canadian pharmacy store: best online canadian pharmacy – canadian pharmacy cheap

  19. All-round and profound market competition analysis: In addition to summing up enterprises’ performance in the dimension of market segments, competition strategy and SWOT analysis, we leverage its profound understanding of the IT market to establish a CPM matrix system consisting of 6 items and 31 sub-items, to review the makings of success in the marketplace.

發佈留言

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