IE打印记录

打印时去掉下面的网址问题,打印预览界面可以打印的按钮,但是打印时不出现该按钮

function openwin() {
//设置网页打印的页眉页脚为空
  var HKEY_Root,HKEY_Path,HKEY_Key;
  HKEY_Root="HKEY_CURRENT_USER";
  HKEY_Path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
try
{
  var Wsh=new ActiveXObject("WScript.Shell");
  HKEY_Key="header";
  Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"");
  HKEY_Key="footer";
  Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"");
}
catch(e){}
   window.print(); 
   }

<div align="center" id="print" style="display:">
      <input name="Button" type="button" value="打印" onclick="openwin()">
</div>

你可能感兴趣的:(js)