您的位置:首页 > Web前端 > JavaScript

JS打印设置空白页眉和页脚

2013-07-02 18:17 555 查看
window.print();设置空白页眉和页脚

<script language="javascript">
var hkey_root,hkey_path,hkey_key;
hkey_root="HKEY_CURRENT_USER";
hkey_path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";

//设置网页打印的页眉页脚为空
function pagesetup_null()
{
 try{
  var RegWsh =  new ActiveXObject("WScript.Shell")
  hkey_key= "header"; 
  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key, "")
  hkey_key= "footer";
  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key, "")
 }catch(e){
  alert(e);
 }
}
</script>

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: