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

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

强制设为首页代码

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

一段实时更新的时间代码

你一定会收藏的Nodejs代码片段

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

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

无限扩展的年份select

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

Javascript随机显示图片的源代码

接收键盘指令的脚本

精品推荐
分类导航