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

29,992 Responses

  1. Jasonzitte表示:

    Every international delivery is prompt and secure.
    cytotec 200mg pills generic
    Their global health insights are enlightening.

  2. WalterCherm表示:

    Efficient service with a personal touch.
    https://lisinoprilpharm24.top/
    Their international shipment tracking system is top-notch.

  3. WalterCherm表示:

    Quick service without compromising on quality.
    https://cipropharm24.top/
    Their international health campaigns are revolutionary.

  4. TolikIncap表示:

    darknet markets onion address https://github.com/darknetmarketlistv8tg0/darknetmarketlist – dark web markets

  5. WalterCherm表示:

    A pharmacy I wholeheartedly recommend to others.
    https://cipropharm24.top/
    Prescription Drug Information, Interactions & Side.

  6. Pingidiof表示:

    dark web market links https://github.com/aresmarketlink0ru72/aresmarketlink – darknet marketplace

  7. Victorprima表示:

    I always find great deals in their monthly promotions.
    gabapentin 300
    They set the tone for international pharmaceutical excellence.

  8. Jasonzitte表示:

    They simplify global healthcare.
    can i order generic clomid online
    The epitome of excellence in international healthcare.

  9. Jasonzitte表示:

    A pharmacy that’s globally recognized and locally loved.
    how to get cipro without prescription
    Their multilingual support team is a blessing.

  10. Victorprima表示:

    A global name with a reputation for excellence.
    where buy generic cipro tablets
    Leading with compassion on a global scale.

  11. Jasonzitte表示:

    Best and news about drug.
    can i order lisinopril pill
    Always up-to-date with international medical advancements.

  12. Victorprima表示:

    A place where customer health is the top priority.
    order generic cytotec pill
    They have a great range of holistic health products.

  13. Victorprima表示:

    They’re reshaping international pharmaceutical care.
    where to get cipro online
    A trusted voice in global health matters.

  14. TolikIncap表示:

    dark web drug marketplace https://github.com/darknetmarketlistv8tg0/darknetmarketlist – best darknet markets

  15. Jasonzitte表示:

    They bridge global healthcare gaps seamlessly.
    can you get cheap cipro tablets
    Delivering worldwide standards with every prescription.

  16. Jasonzitte表示:

    Bridging continents with their top-notch service.
    can you get cipro for sale
    Their senior citizen discounts are much appreciated.

發佈留言

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