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

16,913 Responses

  1. I asked him what the Sherman Park uprising could have meant for the sometimes Democratic stronghold and a presidential election that was set to transpire only a few months later.

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

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

  4. Packed with insights, or what I call, a buffet for the brain.

  5. выведение из запоя на дому спб цены [url=http://tatuheart.ukrbb.net/viewtopic.php?f=8&t=15095/]выведение из запоя на дому спб цены[/url] .

  6. Tackled this hard to understand issue with elegance. I didn’t know we were at a ballet.

  7. The warmth and intelligence in The writing is as comforting as a cozy blanket on a cold night.

  8. Making hard to understand topics accessible is a talent. It’s like you’re the translator of my heart’s unspoken questions.

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

  10. The Writing is like a secret garden, each post a path leading to new discoveries and delights.

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

  12. Tackled this hard to understand issue with elegance. I didn’t know we were at a ballet.

  13. The attention to detail is remarkable, like a detective at a crime scene, but for words.

  14. A gift for explaining things, making the rest of us look bad.

  15. The effort you’ve put into this post is evident and much appreciated. It’s clear you care deeply about The work.

  16. Thank you for making hard to understand topics accessible and engaging.

  17. I’m always excited to see The posts in my feed. Another excellent article!

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

發佈留言

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