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

  1. BrettTIT表示:

    cheapest cialis: buy cialis pill – Cialis 20mg price in USA

  2. BrettTIT表示:

    Generic Tadalafil 20mg price: buy cialis online – Buy Tadalafil 20mg

  3. Barrybib表示:

    erectile dysfunction medicine online: buy ed medication – erectile dysfunction medications online

  4. вывод из запоя цены ростов-на-дону вывод из запоя цены ростов-на-дону .

  5. And the current “Production Film” confirms that Jungkook was involved in every a part of the creative process, from the concept…

  6. Jeromevop表示:

    https://2bsgate.sbs – https blacksprut com net blacksprutl1 com

  7. Paul & Pacific linked the Midwest to the West Coast.

  8. Charlesbot表示:

    https://fastpillsformen.com/# Generic Viagra online

  9. Charlesbot表示:

    https://maxpillsformen.com/# Cialis over the counter

  10. Donaldabula表示:

    Cheap Cialis MaxPillsForMen Cialis over the counter

  11. Donaldabula表示:

    sildenafil over the counter Fast Pills For Men sildenafil 50 mg price

  12. Charlesbot表示:

    http://fastpillseasy.com/# cheapest ed treatment

  13. BrettTIT表示:

    Viagra generic over the counter: FastPillsForMen – buy viagra here

  14. Donaldabula表示:

    sildenafil 50 mg price FastPillsForMen Viagra without a doctor prescription Canada

  15. Barrybib表示:

    Generic Cialis without a doctor prescription: MaxPillsForMen – buy cialis pill

  16. Carmineawarl表示:

    [url=https://2bsgate.sbs/]служба поддержки blacksprut[/url]

發佈留言

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