现在的位置: 首页 > 综合 > 正文

用javascript设置IE的打印页边距

2012年03月24日 ⁄ 综合 ⁄ 共 929字 ⁄ 字号 评论关闭
<html>  
  <head><tilte></title></head>  
  <SCRIPT   LANGUAGE=javascript>  
  function   setPrint()  
  {  
  factory.printing.PageSetup();  
  }  
  function   previewPrint()  
  {  
  WB.ExecWB(7,1)  
  }  
  function   initPrintSet()  
  {  
  factory.printing.header   =   "Hello   Ken";  
      factory.printing.footer   =   "Good   Bye   Ken";  
      factory.printing.leftMargin   =   8;  
      factory.printing.topMargin   =   1.5;  
      factory.printing.rightMargin   =   0.75;  
      factory.printing.bottomMargin   =   1.5;  
      //factory.printing.printBackground   =   true;  
      factory.printing.portrait   =   false;  
  }  
  </SCRIPT>  
     
  <body   onload="initPrintSet()">  
  <OBJECT   classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"   id="factory"   codebase="http://www.meadroid.com/scriptx/ScriptX.cab#Version=6,1,429,14"   width=0>  
  </OBJECT>  
   
  <INPUT   type="button"   value="Set"   id=button1   name=button1   onclick="setPrint();">  
  <INPUT   type="button"   value="Preview"   id=button2   name=button2   onclick="previewPrint();">  
  </body>  
  </html>

抱歉!评论已关闭.