IE 直接打印 页面的方式

2018-06-27 09:07:54来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1、 通过在IE中加载adobe pdf reader 插件 进行直接打印和打印的配置(推荐)
<body>
  <object id="pdf1" width="1000px" height="400px" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000">
  <param name="src" value="../xdoc/testDoc.do">
  </object>
  <script language="JavaScript">
  pdf1.SetShowToolbar (false);
  </script>
  <input type="button" value="打印" onclick="pdf1.printAll()">
  <input type="button" value="打印(带对话框)" onclick="pdf1.printWithDialog()">
  </body>
 
2、通过  smsx.cab 打印控件进行直接打印
 
 
  <object id="factory" style="display:none" classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814" codebase="smsx.cab#Version=6,3,435,20">
  </object>
  <script type="text/JavaScript">
  function setting () {
 
  if(!factory.object) {
           alert("打印控件没有正确安装!");
  return;
  } else {
  factory.printing.header = "";//页眉
  factory.printing.footer = "";//页脚
  factory.printing.leftMargin = 1.0;//左边距
  factory.printing.topMargin = 1.3;//上边距
  factory.printing.rightMargin = 1.0;//右边距
  factory.printing.bottomMargin = 1.3;//下边距
 
  factory.printing.portrait = true;//打印方向,true:纵向.false:横向
  }
  }
  </script>
  </head>
  <script type="text/javascript">
  function printPDF(){
        factory.printing.Print(true, $("#printIframe")[0].contentWindow.html);
           }
  </script>
  <body onload="setting()">
  <input type="button" value="打印PDF" onclick="printPDF()"/>
  <iframe style="display:block; width:1200px; height:700px;" name="printIframe" id="printIframe"      src="../xdoc/testDoc.do"></iframe>
  </body>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:HTML CSS编码规范(黄金定律)

下一篇:easyui datagrid 本地json数据 实现删除