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

  1. They also can help to curb copyright infringement, which is a big situation for impartial artists and firms alike.

  2. To find out how efficient your machine is, there are a number of things to contemplate.

  3. Rashtrakutas, Kadambas, Silah, Chalukyas, Bahamani Muslims and most famously the Portuguese have been rulers of Goa.

  4. They have a yearly salary of around $200,000 and invest in the firm in exchange for stock ownership.

  5. Sometimes, a seal between two different supplies is a weak point in nearly any construction, and so the intersection of rubber and metallic is bolstered in run-flat purposes.

  6. Clint Eastwood directed and starred in 1976’s “The Outlaw Josey Wales.” A revisionist Western, which Eastwood has described as an anti-conflict movie, “The Outlaw Josey Wales” tells the story of a farmer pushed to revenge when his wife and youngster are killed by renegade Union troopers within the Civil War.

  7. Bah谩始铆 World Centre (2007).

  8. Enlarge the photos, then sketch in prospective new plants to get an thought of how they will look.

  9. Is There an Infrastructure to Help Electric Automotive Recharging?

  10. promokod_eapi表示:

    продамус промокод promokod-prodam.ru .

  11. Tanzania Odyssey director Marc Harris mentioned the survey’s outcomes mirrored the views of his clients, who are mainly from Britain and the United States.

  12. Shackleton returned to Britain from the Endurance expedition in late Could 1917, while World War I used to be underneath means.

  13. снятие ломки нарколог [url=http://sportandpolitics.ukrbb.net/viewtopic.php?f=24&t=17889]снятие ломки нарколог[/url] .

  14. снятие ломки у наркомана [url=www.to.iboard.ws/viewtopic.php?id=8079/]снятие ломки у наркомана[/url] .

  15. Listed here are just a few easy workouts beneficial by the NAFC that must be finished every day for finest outcomes.

  16. Whether or not or not you’re shifting out of state, ensure to vary the tackle in your driver’s license, as it is commonly used for identification.

  17. When somebody speaks about hospitable kind character, the very very first thing that strikes our mind is an individual who is pleasant, heat and welcoming.

  18. If there is none, create one that will final you all by way of the day.

  19. You need to study your financial advisor’s portfolio in order to get familiar with his past work background.

  20. It wasn’t till 1781 that the first street was built into the city, which enabled folks to arrive by stagecoach.

  21. link porn表示:

    I like the helpful information you provide in your articles. I’ll bookmark your blog and check again here frequently. I am quite certain I’ll learn many new stuff right here! Best of luck for the next!

  22. Even one thing as comparatively easy as discharging a television set or monitor can be deadly if you make a mistake.

發佈留言

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