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

  1. CoreySweno表示:

    https://mexicanpharmacy.cheap/# mexico pharmacies prescription drugs

  2. RaymondblorE表示:

    medicine in mexico pharmacies buying prescription drugs in mexico online purple pharmacy mexico price list

  3. MichaelDocky表示:

    https://mexicanpharmacy.cheap/# buying prescription drugs in mexico

  4. RaymondblorE表示:

    mexico pharmacy mexico pharmacies prescription drugs mexican rx online

  5. Manuelrar表示:

    online-apotheken: kamagra bestellen – п»їonline apotheke

  6. Frankslila表示:

    http://potenzmittel.men/# online apotheke preisvergleich

  7. Raymondswity表示:

    online apotheke deutschland online apotheke gunstig online apotheke preisvergleich

  8. StevenStasp表示:

    https://viagrakaufen.store/# Viagra kaufen gГјnstig Deutschland

  9. Raymondswity表示:

    Viagra online kaufen legal viagra ohne rezept Viagra rezeptfreie bestellen

  10. Frankslila表示:

    http://apotheke.company/# online apotheke versandkostenfrei

  11. Manuelrar表示:

    versandapotheke deutschland: kamagra online bestellen – versandapotheke

  12. StevenStasp表示:

    https://kamagrakaufen.top/# versandapotheke

  13. Raymondswity表示:

    online apotheke gГјnstig online apotheke versandkostenfrei internet apotheke

  14. Frankslila表示:

    http://kamagrakaufen.top/# versandapotheke deutschland

  15. Raymondswity表示:

    versandapotheke versandkostenfrei online apotheke gunstig gГјnstige online apotheke

  16. StevenStasp表示:

    http://potenzmittel.men/# online apotheke gГјnstig

  17. Frankslila表示:

    https://viagrakaufen.store/# Viagra kaufen ohne Rezept Schweiz

  18. Raymondswity表示:

    versandapotheke deutschland versandapotheke versandkostenfrei internet apotheke

  19. StevenStasp表示:

    https://kamagrakaufen.top/# gГјnstige online apotheke

  20. Frankslila表示:

    https://cialiskaufen.pro/# internet apotheke

  21. Exerleree表示:

    buy cialis online europe As such, increased adiposity in an individual categorized as having normal BMI is likely to remain clinically unrecognized

  22. Mariophity表示:

    farmacias online baratas: vardenafilo – farmacia 24h

  23. Kevinclats表示:

    pharmacie ouverte 24/24 Levitra sans ordonnance 24h Pharmacies en ligne certifiГ©es

  24. LarryWhope表示:

    http://viagrasansordonnance.store/# Viagra prix pharmacie paris

  25. LarryWhope表示:

    https://viagrasansordonnance.store/# Acheter Sildenafil 100mg sans ordonnance

  26. LarryWhope表示:

    http://cialissansordonnance.pro/# Pharmacie en ligne France

  27. LarryWhope表示:

    https://pharmacieenligne.guru/# Pharmacie en ligne sans ordonnance

  28. Eliseorip表示:

    п»їpharmacie en ligne: Levitra pharmacie en ligne – Pharmacie en ligne livraison 24h

  29. LarryWhope表示:

    https://cialissansordonnance.pro/# Pharmacie en ligne fiable

  30. Mariophity表示:

    farmacias online seguras en espaГ±a: vardenafilo – farmacias online seguras

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

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