手机
当前位置:查字典教程网 >编程开发 >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>

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

获得当前页面URL地址的三个JS代码

简单的防盗链功能代码(iframe)

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

Ctrl + Enter提交前检测的代码

网页里控制图片大小的相关代码

一段实时更新的时间代码

无限扩展的年份select

7个有用的jQuery代码片段分享

强制设为首页代码

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

精品推荐
分类导航