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

17,034 Responses

  1. DanielAbice表示:

    http://cipharmdelivery.com/# buy cipro online usa

  2. SamuelBix表示:

    buy cipro no rx: CiPharmDelivery – buy cipro online canada

  3. This post has been incredibly helpful to me. The guidance is something I’m truly grateful for.

  4. The passion for this subject shines through The words. Inspiring!

  5. You’ve done a fantastic job of breaking down this topic. Thanks for the clarity!

  6. The insights added a lot of value, in a way only Google Scholar dreams of. Thanks for the enlightenment.

  7. Thoroughly insightful read, or so I thought until I realized it was The expertise shining through. Thanks for making me feel like a novice again!

  8. This comprehensive article had me hanging on every word, much like I would during a late-night chat.

  9. The writing has the warmth and familiarity of a favorite sweater, providing comfort and insight in equal measure.

  10. Adding value to the conversation, because what’s a discussion without The two cents?

  11. SamuelBix表示:

    prednisone 5mg coupon: Predni Best – prednisone 10 mg price

  12. Refreshing take on the subject, like a cold splash of water to my long-held beliefs.

  13. You’ve opened my eyes to new perspectives. Thank you for the enlightenment!

  14. The elegance of The prose is like a fine dance, each word stepping gracefully to the next.

  15. The post added a new layer to my understanding of the subject. Thanks for sharing The knowledge.

  16. The dedication to high quality content is evident. Keep up the great work!

  17. Beautifully written and informative, making the rest of the internet look bad.

  18. чат с незнакомцами [url=http://www.anonimnyj-chat11.ru]чат с незнакомцами[/url] .

  19. что такое анонимный чат что такое анонимный чат .

  20. Gregorysuify表示:

    The 1xBet promo code 2025: 1XNEW25. Use to register a new member, get a sports bonus 100% up to €130 and casino bonus €1950 + 150 free spins. Use the bonus code when registering and you are guaranteed to receive a 2025 welcome bonus from 1xBet. The 1xBet bookmaker has proven itself to be time-tested, it has high odds for sports betting, and a huge number of slots in the cauldron section, there are also roulette, poker, and fast online games like Aviator.

    https://hyundaimobil.co.id/assets/articles/1xbet_new_promo_code_copy.html – 1xbet today promo code

  21. The unique viewpoints in The writing never fail to impress me. Insightful as always!

  22. The post added a new layer to my understanding of the subject. Thanks for sharing The knowledge.

  23. Each post you share is like a gift, wrapped in the finest paper of eloquence and insight.

  24. Beautifully written and incredibly informative, The post has made a lasting impression on me. Thank you for sharing The thoughts.

  25. MelvingoN表示:

    посетить веб-сайт
    Mango-Office кабинет

  26. The way you break down ideas is like a chef explaining a recipe, making hard to understand dishes seem simple.

  27. SamuelBix表示:

    buy cipro cheap: buy cipro without rx – buy cipro online

  28. KennethPah表示:

    amoxicillin 500mg price canada amoxicillin 800 mg price amoxicillin 500 capsule

  29. The hard work you put into this post is as admirable as The commitment to high quality. It’s very attractive.

  30. The writing captivated me from the first paragraph to the last. It’s rare to find such engaging content.

發佈留言

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