踩到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...

22,022 Responses

  1. CalvinRhymn表示:

    Mexican Cert Pharm: mexican pharmacy online – mexican pharmacy online

  2. Joshuareoto表示:

    pharmacies in mexico that ship to usa https://certpharm.com/# Mexican Cert Pharm

  3. Rodneytah表示:

    https://certpharm.com/# mexico pharmacies prescription drugs

  4. AnthonyNum表示:

    Best Mexican pharmacy online: Mexican Cert Pharm – mexican pharmacy online

  5. Joshuareoto表示:

    mexican border pharmacies shipping to usa https://certpharm.shop/# Best Mexican pharmacy online

  6. CalvinRhymn表示:

    Cert Pharm: Best Mexican pharmacy online – Best Mexican pharmacy online

  7. LarrykeW表示:

    Best Mexican pharmacy online Legit online Mexican pharmacy Best Mexican pharmacy online

  8. AnthonyNum表示:

    Mexican Cert Pharm: Legit online Mexican pharmacy – mexican pharmacy

  9. Rabyemert表示:

    darknet markets onion dark market url

  10. Joshuareoto表示:

    mexico drug stores pharmacies http://certpharm.com/# best online pharmacies in mexico

  11. TolikIncap表示:

    dark web market links darknet sites

  12. LarrykeW表示:

    mexican pharmacy medication from mexico pharmacy mexican pharmacy

  13. CalvinRhymn表示:

    Legit online Mexican pharmacy: mexican pharmacy online – Best Mexican pharmacy online

  14. Rodneytah表示:

    https://certpharm.com/# Legit online Mexican pharmacy

  15. Rabyemert表示:

    darknet markets onion address darknet sites

  16. Rodneytah表示:

    https://certpharm.com/# purple pharmacy mexico price list

  17. Sodo66表示:

    Great resources and tips for families here.

  18. AnthonyNum表示:

    mexican pharmacy online: Mexican Cert Pharm – Cert Pharm

  19. Joshuareoto表示:

    buying prescription drugs in mexico https://certpharm.com/# Cert Pharm

  20. AnthonyNum表示:

    Legit online Mexican pharmacy: mexican pharmacy – mexican pharmacy online

  21. Joshuareoto表示:

    mexican border pharmacies shipping to usa https://certpharm.shop/# medicine in mexico pharmacies

  22. AnthonyNum表示:

    mexican pharmacy online: mexican pharmacy online – Cert Pharm

  23. Rodneytah表示:

    http://certpharm.com/# mexican pharmacy

發佈留言

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