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

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

function webPrint(objId){

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

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

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

  printWindow.document.write(' ');

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

  printWindow.document.write('

'+printContent+"
");

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

  printWindow.document.write("");//这里向新建的窗体写入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){}

}

你可能感兴趣的:(js,window.print(),print())