手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >控制打印时页眉角的代码
控制打印时页眉角的代码
摘要:复制代码代码如下: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>

【控制打印时页眉角的代码】相关文章:

Ctrl + Enter提交前检测的代码

设为首页 加入收藏的js代码

javascript改变和控制显示的图片大小

接收键盘指令的脚本

一些有关检查数据的JS代码

将HTML自动转为JS代码

如何控制框架页的滚动

必须点击广告才能进入的代码

制作特殊字的脚本

一些很实用且必用的小脚本代码第1/5页

精品推荐
分类导航