列印時移除頁首頁頁尾 列印前加入下方程式碼即可 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");