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

  1. BrettTIT表示:

    Generic Viagra online: FastPillsForMen.com – Sildenafil Citrate Tablets 100mg

  2. I do believe your audience could very well want a good deal more stories like this carry on the excellent hard work.

  3. ku11表示:

    hey thanks for the info. appreciate the good work

  4. Charlesbot表示:

    http://fastpillseasy.com/# where can i get ed pills

  5. сравнение производительности процессоров https://topcpu.ru .

  6. ku bet表示:

    There is so much to try to understand

  7. Donaldabula表示:

    buy ed meds fast pills easy ed medicines online

  8. рейтинги производительности процессоров рейтинги производительности процессоров .

  9. kubet88表示:

    Thanks for your patience and sorry for the inconvenience!

  10. Donaldabula表示:

    over the counter sildenafil cheap viagra cheap viagra

  11. Charlesbot表示:

    http://fastpillseasy.com/# ed medicine online

  12. ku11表示:

    Cherished is likely to be what people say about your comments.

  13. kubet88表示:

    You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material!

  14. BrettTIT表示:

    Viagra online price: FastPillsForMen – sildenafil 50 mg price

  15. kubet表示:

    I appreciate, cause I found just what I was looking for. You’ve ended my four day long hunt! God Bless you man. Have a great day. Bye -.

  16. BrettTIT表示:

    buy cialis pill: Max Pills For Men – Buy Cialis online

  17. Donaldabula表示:

    sildenafil 50 mg price cheap viagra Cheap Sildenafil 100mg

  18. lcnapa.com表示:

    Amazing article, cheers, I will bookmark you now.

  19. Jun 88表示:

    This is my first time i visit here. I found so many helpful stuff in your website especially its discussion. From the tons of responses on your posts, I guess I am not the only one having all the enjoyment here! keep up the excellent work

  20. Barrybib表示:

    cheapest viagra: FastPillsForMen – Buy generic 100mg Viagra online

  21. BrettTIT表示:

    Cheap Cialis: Tadalafil Tablet – Buy Tadalafil 10mg

  22. Charlesbot表示:

    https://maxpillsformen.com/# Cheap Cialis

  23. Barrybib表示:

    online ed medicine: ed treatment online – ed drugs online

發佈留言

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