打印時去除頁眉頁頁腳 打印前加入下面代碼即可 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";
//設置頁眉(為空) 根據你自己要設置的填入
Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"");
HKEY_Key="footer";
//設置頁腳(為空) 根據你自己要設置的填入
Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"");
HKEY_Key="margin_bottom";
//設置下頁邊距(0) 根據你自己要設置的填入
Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"0");
HKEY_Key="margin_left";
//設置左頁邊距(0) 根據你自己要設置的填入
Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"1");
HKEY_Key="margin_right";
//設置右頁邊距(0)
Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"0");
HKEY_Key="margin_top";
//設置上頁邊距(8)
Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"1");