這篇文章主要介紹了javascript實(shí)現(xiàn)window.print()去除頁(yè)眉頁(yè)腳的方法以及各參數(shù)的設(shè)置技巧,需要的朋友可以參考下。
打印時(shí)去除頁(yè)眉頁(yè)頁(yè)腳 打印前加入下面代碼即可 var HKEY_Root,HKEY_Path,HKEY_Key;
HKEY_Root="HKEY_CURRENT_USER"; HKEY_Path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\"; var head,foot,top,bottom,left,right; var Wsh=new ActiveXObject("WScript.Shell"); HKEY_Key="header"; //設(shè)置頁(yè)眉(為空) 根據(jù)你自己要設(shè)置的填入 Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,""); HKEY_Key="footer"; //設(shè)置頁(yè)腳(為空) 根據(jù)你自己要設(shè)置的填入 Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,""); HKEY_Key="margin_bottom"; //設(shè)置下頁(yè)邊距(0) 根據(jù)你自己要設(shè)置的填入 Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"0"); HKEY_Key="margin_left"; //設(shè)置左頁(yè)邊距(0) 根據(jù)你自己要設(shè)置的填入 Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"1"); HKEY_Key="margin_right"; //設(shè)置右頁(yè)邊距(0) Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"0"); HKEY_Key="margin_top"; //設(shè)置上頁(yè)邊距(8) Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"1");