Maison  >  Article  >  interface Web  >  控制打印时页眉角的代码_javascript技巧

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

WBOY
WBOYoriginal
2016-05-16 19:19:171070parcourir
复制代码 代码如下:

<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>

 


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn