欢迎光临
我们一直在努力

打印网页时怎么去掉页眉页脚-ASP教程,打印相关

建站超值云服务器,限时71元/月

<html><head>
<script language=”javascript”>
var hkey_root,hkey_path,hkey_key
hkey_root=”hkey_current_user”
hkey_path=”\\software\\microsoft\\internet explorer\\pagesetup\\”
//设置网页打印的页眉页脚为空
function pagesetup_null(){
try{
var regwsh = new activexobject(“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){}
}
//设置网页打印的页眉页脚为默认值
function pagesetup_default(){
try{
var regwsh = new activexobject(“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){}
}
</script>
</head>

<body><br/><br/><br/><br/><br/><br/><p align=center>
<input type=”button” value=”清空页码” onclick=pagesetup_null()>
<input type=”button” value=”恢复页码” onclick=pagesetup_default()><br/>
</p></body></html>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 打印网页时怎么去掉页眉页脚-ASP教程,打印相关
分享到: 更多 (0)