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