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

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

  2. Incredibly helpful post, like a GPS for my lost thoughts.

  3. The work is truly inspirational. It’s as if you’ve found a way to whisper sweet nothings to my intellect.

  4. 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!

  5. The work is truly inspirational. I appreciate the depth you bring to The topics.

  6. KennethPah表示:

    amoxicillin tablets in india AmoxStar amoxicillin canada price

  7. KennethPah表示:

    can i buy generic clomid how can i get cheap clomid where buy cheap clomid now

  8. The creativity shines through, making me wonder what else you could do with such a vivid imagination.

  9. The article was a joy to read, and The enthusiasm is as infectious as The charm.

  10. Touched on personal resonances, or as I like to call it, psychic abilities.

  11. Reading The work is like watching the sunrise, a daily reminder of beauty and new beginnings.

  12. The work is both informative and thought-provoking. I’m really impressed by the high quality of The content.

  13. вывод из запоя санкт петербург [url=https://belbeer.borda.ru/?1-6-0-00000780-000-0-0-1730825410]вывод из запоя санкт петербург[/url] .

  14. DanielAbice表示:

    https://prednibest.com/# prednisone 10mg tablets

  15. SamuelBix表示:

    buy cipro online canada: CiPharmDelivery – where can i buy cipro online

  16. The insights add so much value to the conversation. I always learn something new from you.

  17. SamuelBix表示:

    amoxicillin 500 mg: AmoxStar – where can i get amoxicillin

  18. I’m genuinely impressed by the depth of The analysis. Great work!

  19. The elegance of The arguments is as captivating as a sunset. I could admire it all day.

  20. Предлагаем услуги профессиональных инженеров офицальной мастерской.
    Еслли вы искали ремонт стиральных машин smeg цены, можете посмотреть на сайте: ремонт стиральных машин smeg в москве
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  21. The content is like a treasure chest; every post uncovers gems of wisdom. X marks the spot here.

  22. The finesse with which you articulated The points made The post a true pleasure to read.

  23. Предлагаем услуги профессиональных инженеров офицальной мастерской.
    Еслли вы искали срочный ремонт стиральных машин smeg, можете посмотреть на сайте: ремонт стиральных машин smeg сервис
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  24. Genuinely impressed by The analysis. I was starting to think depth had gone out of style. Kudos for proving me wrong!

  25. The content is like a treasure chest; every post uncovers gems of wisdom. X marks the spot here.

  26. The analysis made me think about the topic in a new way. Thanks for the insightful read.

  27. Testament to The expertise and hard work, or The ability to make me feel utterly unaccomplished.

  28. Thank you for adding value to the conversation with The insights.

  29. Total PL表示:

    Jakie korzyści mają użytkownicy aplikacji? Możliwość korzystania z pełnej oferty gier oraz informacji o promocjach z jednego urządzenia. W każdej chwili możemy wyciągnąć telefon i otworzyć nasze e-kasyno. Aplikacja działa płynnie, a gracze bardzo ją sobie chwalą.

發佈留言

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