JS window.print() 調用前后監聽


var beforePrint = function(){
    console.log('beforePrint')
  //頁面打印縮放比例設置
document.getElementsByTagName('body')[0].style.zoom=0.92; };
var afterPrint = function(){ console.log('afterPrint')
//頁面打印結束或取消時還原
document.getElementsByTagName('body')[0].style.zoom=1; }
if(window.matchMedia){ var mediaQueryList = window.matchMedia('print'); mediaQueryList.addListener(function(mql){ if(mql.matches){ beforePrint() }else{ afterPrint(); } }); }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM