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

  1. JasonWal表示:

    paxlovid generic: buy paxlovid online – paxlovid buy

  2. JasonWal表示:

    paxlovid covid: paxlovid buy – paxlovid covid

  3. JasonWal表示:

    amoxicillin script: amoxicillin discount – amoxicillin 500 mg cost

  4. Hermanges表示:

    cost generic clomid for sale cheap clomid cost of generic clomid tablets

  5. JasonWal表示:

    where can i buy cheap clomid without insurance: can you get generic clomid without insurance – generic clomid without dr prescription

  6. Raymondsmero表示:

    http://prednisone.bid/# prednisone 10 mg over the counter

  7. JasonWal表示:

    generic clomid prices: where to buy generic clomid no prescription – can you get generic clomid prices

  8. BrianDutle表示:

    http://prednisone.bid/# can you buy prednisone

  9. JasonWal表示:

    amoxicillin 875 125 mg tab: buy amoxicillin over the counter uk – cheap amoxicillin 500mg

  10. Hermanges表示:

    buy cipro no rx buy cipro buy cipro without rx

  11. JasonWal表示:

    purchase prednisone: prednisone in uk – prednisone 2 mg daily

  12. JasonWal表示:

    paxlovid price: buy paxlovid online – paxlovid covid

  13. Raymondsmero表示:

    http://prednisone.bid/# prednisone 12 tablets price

  14. RalphBic表示:

    http://canadiandrugs.tech/# online canadian pharmacy canadiandrugs.tech

  15. RalphBic表示:

    http://canadiandrugs.tech/# canadianpharmacyworld canadiandrugs.tech

  16. RalphBic表示:

    https://canadiandrugs.tech/# canadian pharmacy prices canadiandrugs.tech

  17. JeffreyAmush表示:

    vipps canadian pharmacy canadianpharmacymeds com canadian pharmacy reviews canadiandrugs.tech

  18. RalphBic表示:

    https://canadiandrugs.tech/# adderall canadian pharmacy canadiandrugs.tech

  19. Joshuafab表示:

    http://indiapharmacy.pro/# top 10 pharmacies in india indiapharmacy.pro

  20. Wilfredtar表示:

    online shopping pharmacy india top 10 pharmacies in india – reputable indian online pharmacy indiapharmacy.guru

  21. RalphBic表示:

    http://canadiandrugs.tech/# canadian pharmacy tampa canadiandrugs.tech

  22. DavidFUs表示:

    top erection pills best over the counter ed pills – best non prescription ed pills edpills.tech

  23. RalphBic表示:

    https://indiapharmacy.guru/# best online pharmacy india indiapharmacy.guru

  24. RalphBic表示:

    http://edpills.tech/# ed remedies edpills.tech

  25. JeffreyAmush表示:

    legitimate canadian pharmacy online safe canadian pharmacy canadian pharmacies that deliver to the us canadiandrugs.tech

  26. RalphBic表示:

    http://indiapharmacy.guru/# top 10 online pharmacy in india indiapharmacy.guru

  27. RalphBic表示:

    https://canadiandrugs.tech/# recommended canadian pharmacies canadiandrugs.tech

  28. RalphBic表示:

    http://canadiandrugs.tech/# best canadian pharmacy to order from canadiandrugs.tech

  29. Wilfredtar表示:

    safe online pharmacies in canada canadian 24 hour pharmacy – canadian online pharmacy reviews canadiandrugs.tech

  30. RalphBic表示:

    https://canadiandrugs.tech/# cheapest pharmacy canada canadiandrugs.tech

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

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