ホームページ  >  記事  >  ウェブフロントエンド  >  控制打印时页眉角的代码_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 までご連絡ください。