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

21,954 Responses

  1. Rodneytah表示:

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

  2. CalvinRhymn表示:

    mexican pharmacy: mexican pharmacy online – Cert Pharm

  3. Joshuareoto表示:

    mexican online pharmacies prescription drugs http://certpharm.com/# Mexican Cert Pharm

  4. 1win_qdkt表示:

    1win официальный сайт вход http://www.1win41.com.kg .

  5. Joshuareoto表示:

    mexican border pharmacies shipping to usa https://certpharm.shop/# mexican pharmaceuticals online

  6. 颅Today, designers and entrepreneurs have turned their attention to creating smaller, environmentally friendly vehicles and car-sharing programs.

  7. AnthonyNum表示:

    mexican pharmacy online: mexican pharmacy – Cert Pharm

  8. CalvinRhymn表示:

    mexican pharmacy: Cert Pharm – Legit online Mexican pharmacy

  9. On March 19, 2020, Pennsylvania governor Tom Wolf ordered a closure of all non-life-sustaining companies in the state to close physical areas in order to slow the unfold of the virus.

  10. 7oh tablets表示:

    I was referred to this web site by my cousin. I’m not sure who has written this post, but you’ve really identified my problem. You’re wonderful! Thanks!

  11. Va88表示:

    I just couldn’t leave your web site prior to suggesting that I really enjoyed the standard info an individual supply to your guests? Is going to be again continuously in order to inspect new posts

  12. CalvinRhymn表示:

    mexican pharmacy: mexican pharmacy online – mexican pharmacy

  13. Joshuareoto表示:

    medication from mexico pharmacy https://certpharm.shop/# Legit online Mexican pharmacy

  14. Rodneytah表示:

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

  15. 79king表示:

    Our communities really need to deal with this.

  16. AnthonyNum表示:

    pharmacies in mexico that ship to usa: Mexican Cert Pharm – Cert Pharm

  17. AnthonyNum表示:

    Mexican Cert Pharm: mexican drugstore online – Cert Pharm

發佈留言

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