解决IE下打印iframe时,页面比例变小的问题

$('#reportFrame')[0].contentWindow.printMyself();//主页面调用iframe里的打印方法
    
  //reportFrame里的方法
  function printMyself() { if (!window.showModalDialog) { //非IE window.print(); } else { //IE下打印 document.body.className += ' ext-ie'; document.execCommand('print', false, null); } }
原文地址:https://www.cnblogs.com/vvull/p/11940389.html