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(); } }); }

 

posted @ 2020-11-12 14:19  枯藤老树流水人家  阅读(2624)  评论(0)    收藏  举报