123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <OBJECT id=WebBrowser classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 width=0 VIEWASTEXT></OBJECT>
- <style type="text/css">
- table{
- border-collapse: collapse;
- }
- td{
- border-bottom: 1px solid #000000;
- border-right: 1px solid #000000;
- border-left: 1px solid #000000;
- border-top: 1px solid #000000;
- padding-bottom: 5px;
- padding-top: 5px;
- padding-left: 12px;
- padding-right: 5px;
- }
- </style>
- <div id="div_print" align="center">
- </div>
- <script>
- var HKEY_Root, HKEY_Path, HKEY_Key;
- HKEY_Root = "HKEY_CURRENT_USER";
- HKEY_Path = "\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
- //设置网页打印的页眉页脚为空
- function PageSetup_Null() {
- try {
- 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, "");
- } catch (e) {
- console.log(e);
- }
- }
- function print2() {
- PageSetup_Null();
- debugger;
- document.all.WebBrowser.ExecWB(6, 2);
- }
- </script>
|