控制打印时页眉角的代码

时间:2021-05-18

复制代码 代码如下:
<scriptlanguage="JScript">
varhkey_root,hkey_path,hkey_key
hkey_root="HKEY_CURRENT_USER"
hkey_path="\\Software\\Microsoft\\InternetExplorer\\PageSetup\\"
//设置网页打印的页眉页脚为空
functionpagesetup_null()
{
try{
varRegWsh=newActiveXObject("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.name+""+e.message)}
}
//设置网页打印的页眉页脚为默认值
functionpagesetup_default()
{
try{
varRegWsh=newActiveXObject("WScript.Shell")
hkey_key="header"
RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&w&b页码,&p/&P")
hkey_key="footer"
RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&u&b&d")
}catch(e){alert(e.name+""+e.message)}
}
</script>
<body>
<inputtype="button"value="恢复页码"onclick=pagesetup_default()>
<inputtype="button"value="清空页码"onclick=pagesetup_null()>
</body>
</html>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章