window.print()去掉页眉页脚及网址链接

//打印(兼容IE浏览器)

function webPrint(objId){

  var printContent=document.getElementById(objId).innerHTML;//获得需要打印内容的HTML代码

  PageSetup_Null();//把页眉页脚设置为空

  printWindow=window.open('','_blank');

  printWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title><style>@page{margin-bottom:0mm;margin-top:2mm}</style></head><body>');

  //这里是向新建的窗口写入HTML的head信息,可引入自己的js和css,以供打印时样式与网页中显示的一致

  printWindow.document.write('<div style="width:100%; height:100%;">'+printContent+"</div>");

  //这里向新建的窗体中写入BODY的内容,注意,外边加的额外DIV是有必要的,它里面CSS可以控制打印时不会出现空白页

  printWindow.document.write("</body></html>");//这里向新建的窗体写入HTML的结束标记

  printWindow.document.close();//关闭新建窗口的文档输出流,否则下面的打印语句无效

  printWindow.print();//打印当前新建窗口中的内容

  printWindow.close();//关闭新建的窗口

  PageSetup_Default();//把页眉页脚恢复为默认

}

//设置网页打印的页眉页脚为空

function PageSetup_Null(){

  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){}

}

//设置网页打印的页眉页脚为默认值

function PageSetup_Default(){

  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,"&w&b页码,&p/&P");

    HKEY_Key="footer";

    Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"&u&b&d");

  }catch(e){}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值