控制打印时页眉角的代码
控制打印时页眉角的代码
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:varhkey_root,hkey_path,hkey_keyhkey_root="HKEY_CURRENT_USER"h...

复制代码 代码如下:

<scriptlanguage="JScript">

varhkey_root,hkey_path,hkey_key

hkey_root="HKEY_CURRENT_USER"

hkey_path="SoftwareMicrosoftInternetExplorerPageSetup"

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

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>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类