首頁  >  文章  >  web前端  >  控制打印时页眉角的代码_javascript技巧

控制打印时页眉角的代码_javascript技巧

WBOY
WBOY原創
2016-05-16 19:19:171070瀏覽
复制代码 代码如下:

<script> <BR>var hkey_root,hkey_path,hkey_key <BR>hkey_root="HKEY_CURRENT_USER" <BR>hkey_path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\" <BR>//设置网页打印的页眉页脚为空 <BR>function pagesetup_null() <BR>{ <BR>try{ <BR> var RegWsh = new ActiveXObject("WScript.Shell") <BR> hkey_key="header" <BR> RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"") <BR> hkey_key="footer" <BR> RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"") <BR> }catch(e){alert(e.name+" "+e.message)} <BR>} <BR>//设置网页打印的页眉页脚为默认值 <BR>function pagesetup_default() <BR>{ <BR> try{ <BR> var RegWsh = new ActiveXObject("WScript.Shell") <BR> hkey_key="header" <BR> RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&w&b页码,&p/&P") <BR> hkey_key="footer" <BR> RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&u&b&d") <BR> }catch(e){alert(e.name+" "+e.message)} <BR>} <BR></script>

 


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn