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

30,052 Responses

  1. Jasonzitte表示:

    A pharmacy that truly values its patrons.
    canine side effects gabapentin
    Outstanding service, no matter where you’re located.

  2. Victorprima表示:

    Their global reach is unmatched.
    can gabapentin be used for bipolar disorder
    Some trends of drugs.

  3. JeremySpito表示:

    Покупка, аренда, ипотека https://komproekt-spb.ru всё о недвижимости в одном блоге! Советы по выбору жилья, юридические аспекты, анализ цен и прогнозы рынка. Рассказываем, как грамотно оформить ипотеку, проверить документы и избежать ошибок при сделках с недвижимостью. Будьте в курсе всех изменений и трендов!

  4. Victorprima表示:

    I’ve sourced rare medications thanks to their global network.
    lisinopril price comparison
    The widest range of international brands under one roof.

  5. JeremySpito表示:

    Покупка, аренда, ипотека https://legato-dom.ru всё о недвижимости в одном блоге! Советы по выбору жилья, юридические аспекты, анализ цен и прогнозы рынка. Рассказываем, как грамотно оформить ипотеку, проверить документы и избежать ошибок при сделках с недвижимостью. Будьте в курсе всех изменений и трендов!

  6. Unusual, in lots of regions although cellular houses are often used to be a residence in Unites states.

  7. Hey there! Someone in my Myspace group shared this site with us so I came to give it a look. I’m definitely loving the information. I’m bookmarking and will be tweeting this to my followers! Exceptional blog and great design.

  8. WalterCherm表示:

    I’m grateful for their around-the-clock service.
    https://cipropharm24.top/
    Their international catalog is expansive.

  9. 1win_vrMl表示:

    1win бонус за приложение https://1win13.am .

  10. WalterCherm表示:

    They handle all the insurance paperwork seamlessly.
    https://clomidpharm24.top/
    Helpful, friendly, and always patient.

  11. Jasonzitte表示:

    They always have valuable advice on medication management.
    can i buy clomid
    They make international medication sourcing a breeze.

  12. Jasonzitte表示:

    Always a pleasant experience at this pharmacy.
    buying lisinopril online
    Their global pharmacists’ network is commendable.

  13. WalterCherm表示:

    Always leaving this place satisfied.
    https://clomidpharm24.top/
    I appreciate their late hours for those unexpected needs.

  14. JeremySpito表示:

    Покупка, аренда, ипотека https://stroyk-wood.ru всё о недвижимости в одном блоге! Советы по выбору жилья, юридические аспекты, анализ цен и прогнозы рынка. Рассказываем, как грамотно оформить ипотеку, проверить документы и избежать ошибок при сделках с недвижимостью. Будьте в курсе всех изменений и трендов!

  15. Victorprima表示:

    Outstanding service, no matter where you’re located.
    can i buy cheap lisinopril pill
    Every visit reaffirms why I choose this pharmacy.

  16. Pingidiof表示:

    dark web marketplaces https://github.com/aresmarketlink0ru72/aresmarketlink – darknet market list

  17. Jasonzitte表示:

    They always have the newest products on the market.
    order cheap lisinopril
    Their flu shots are quick and hassle-free.

  18. Victorprima表示:

    Offering a global touch with every service.
    where buy clomid
    Their pharmacists are top-notch; highly trained and personable.

發佈回覆給「Jasonzitte」的留言 取消回覆

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