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

10,290 Responses

  1. 비아그라 효능 전립선에도 좋을까?

    비아그라 효능 전립선에도 좋을까?

  2. ploylada表示:

    A powerful share, I simply given this onto a colleague who was doing a little evaluation on this. And he the truth is bought me breakfast as a result of I found it for him.. smile. So let me reword that: Thnx for the treat! However yeah Thnkx for spending the time to debate this, I really feel strongly about it and love reading more on this topic. If attainable, as you become experience, would you thoughts updating your weblog with extra particulars? It’s highly helpful for me. Large thumb up for this blog submit!

  3. Charleshon表示:

    http://indiapharmacy.shop/# best india pharmacy
    best ed medication online

  4. Leonardpar表示:

    https://mexicopharmacy.win/# purple pharmacy mexico price list

  5. This was a thoroughly insightful read. Thank you for sharing The expertise!

  6. car cal表示:

    The thoughtful analysis has really made me think, in a way that’s as stimulating as a deep gaze into The eyes.

  7. car cal表示:

    The writing style is captivating! I was engaged from start to finish.

  8. good88表示:

    I’d like to be able to write like this, but taking the time and developing articles is hard…. Takes a lot of effort.

  9. Hgceno表示:

    cheap imusporin – methotrexate 10mg canada order colchicine pills

  10. Samueldub表示:

    https://sildenafil.llc/# cialis vs viagra

  11. Georgedrync表示:

    max cialis dose: cialis without a doctor prescription – herbal cialis

  12. Fantastic job breaking down this topic, like a demolition crew for my misconceptions.

  13. Appreciate the clarity you bring to this topic. It’s like you’re speaking to five-year-olds, which is perfect for me.

  14. car cal表示:

    This article was a joy to read. The enthusiasm is contagious!

  15. The unique perspective on this subject was enlightening. It’s refreshing to see someone so passionate about their topic.

  16. Reading The Writing is like finding the perfect song that I can’t stop listening to. Play it again?

  17. car cal表示:

    Each post is a journey, and The words are the map. Thanks for leading the way.

  18. The clarity and thoughtfulness of The approach is as appealing as a deep conversation over coffee.

  19. car cal表示:

    Incredibly informative post! I learned a lot and look forward to more.

  20. Lewisslund表示:

    Admiring the hard work you put into your blog and detailed information you provide. It’s good to come across a blog every once in a while that isn’t the same unwanted rehashed material. Great read! I’ve saved your site and I’m adding your RSS feeds to my Google account.

    https://vodamarket.od.ua/idealne-sklo-dlya-far-vybir-ta-vstanovlennya

  21. Our communities really need to deal with this.

發佈留言

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