踩到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. AnthonyASYNC表示:

    prescription drugs online without: non prescription ed drugs – ed meds online without doctor prescription

  2. CharlesMar表示:

    buy medicines online in india: Online medicine home delivery – buy medicines online in india

  3. DavidMus表示:

    https://indiapharm.guru/# india pharmacy mail order

  4. WilliePrals表示:

    get propecia tablets: cost of propecia online – cost of cheap propecia without dr prescription

  5. CharlesMar表示:

    erectile dysfunction pills: erectile dysfunction drugs – best male enhancement pills

  6. DavidMus表示:

    http://withoutprescription.guru/# non prescription ed pills

  7. Josephglilm表示:

    http://withoutprescription.guru/# online prescription for ed meds

  8. WczxOmilk表示:

    where to get female viagra over the counter viagra voucher buy online viagra capsules

  9. Edgardot表示:

    https://withoutprescription.shop/# online drugstore without prescription

  10. Nxtxwy表示:

    buy ramipril 10mg generic arcoxia online order amaryl usa

  11. WnuiOmilk表示:

    where to get female viagra pills viagra 20 mg cost price of viagra 100mg

  12. WczxOmilk表示:

    viagra nz online viagra online price us viagra prices

  13. CaseyAmeks表示:

    https://pharmacyreview.best/# best canadian pharmacy online

  14. Williamnok表示:

    canadian pharmacy meds online drug

  15. NbsbPipse表示:

    black cialis 5mg tadalafil tadalafil tablets online

  16. Williamnok表示:

    top canadian pharmacies prescription drugs canadian

  17. flishiz表示:

    Information on data analysis is provided as Additional file 1 supplemental information ivomec PMID 20738011 Free PMC article

  18. Lloydbic表示:

    matchmeetups dating site top sites dating

  19. Michaelscesk表示:

    видео flight simulator. Где получить кредит вебмани мгновенно? сайт для мужчин екатеринбург

  20. Lloydbic表示:

    canadian pharmacy checker canadian online pharmacy

  21. CaseyAmeks表示:

    https://withoutprescription.shop/# discount prescription drugs online

  22. JbfgBamstisse表示:

    generic viagra coupon sildenafil india pharmacy viagra pill cost usa

  23. JrhbPipse表示:

    cialis professional cialis for blood pressure cialis sell on internet by australia company

  24. JrhbPipse表示:

    no prescription generic cialis cialis 20mg usa cheapest cialis in australia

  25. Alepegap表示:

    black cialis cialis canada eli lilly cialis coupon

  26. EbrcOmilk表示:

    mail order pharmacy no prescription online pharmacy scams canadian equine pharmacy

  27. Enrcwrist表示:

    buy viagra express sildenafil india price sildenafil 50mg prices

  28. Enrcwrist表示:

    sildenafil 100mg price comparison sildenafil 100mg online uk generic viagra singapore

  29. Dxotgf表示:

    ketorolac pill order losartan 50mg sale losartan 50mg pill

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

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