1. 程式人生 > >Jquery呼叫印表機列印(包含去除頁首頁尾)

Jquery呼叫印表機列印(包含去除頁首頁尾)

個人小說網站友書-綠色、純淨、無廣告歡迎廣大同行前來指點、閱讀
話不多說,直接上程式碼,

function Print(data) {
                $.post("../../program/ashx/PrintAshx.ashx", { Id: data, OrderId: $("#HiddenField1").val() }, function (data) {
                    if (data != "" && data != null && data != undefined) {
                        var head = "<html
>
<head><title></title></head><body><OBJECT classid='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2' height='0' id='WebBrowser3' width='0' VIEWASTEXT></OBJECT><div align='center'><table width=250px align='center'>";//先生成頭部 var foot = "</table
>
</div></body></html>";//生成尾部 var newstr = ""; newstr += '<tr><td colspan="4" style="font-size:10px;line-height:20px">單據編號:' + data["djbh"] + '</td></tr>'; newstr += '<tr><td colspan="4"
style="font-size:10px;line-height:20px">
機構:' + data["jigou"] + '</td></tr>'; newstr += '<tr><td colspan="4" style="font-size:10px;line-height:20px">中心:' + data["center"] + '</td></tr>'; newstr += '<tr><td colspan="4" style="font-size:10px;line-height:20px" align="left">-------------------收款清單-------------------</td></tr>' newstr += '<tr><td style="font-size:10px" colspan="4">付款人:' + data["fukuan"] + ' ' + "\t\t\t" + '列印時間:' + data["sysdt"] + '</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4">------------------------------------------------</td></tr>'; newstr += '<tr><td style="font-size:10px" style="width:20%" align="center"></br>序號</td><td style="width:40%;font-size:10px" align="center">專案</td><td style="width:20%;font-size:10px" align="center">數量</td><td style="width:20%;font-size:10px" align="center">金額</td></tr>'; newstr += '<tr><td style="font-size:10px" style="width:20%;font-size:10px" align="center">' + data["xh"] + '</td><td style="width:50%;font-size:10px" align="center">' + data["item"] + '</td><td style="width:10%;font-size:10px" align="center">' + data["shuliang"] + '</td><td style="width:20%;font-size:10px" align="center">' + data["zongjia"] + '</td></tr>'; newstr += "<tr></tr>" + data["youhui"]; newstr += '<tr><td style="font-size:10px" colspan="4"></br>應付合計:' + data["yingfu"] + '</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4"></br>支付金額:' + data["shifu"] + '</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4"></br>支付時間:' + data["sysdt"] + '</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4"></br>------------------------------------------------</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4">收款人:' + data["username"] + '</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4">------------------------------------------------</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4"></br>備註:此單為繳款憑證,請妥善儲存</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4"></br>聯絡電話:' + data["tel"] + '</td></tr>'; newstr += '<tr><td style="font-size:10px" colspan="4"></br>地址:' + data["dizhi"] + ' </td></tr>'; ----------------------------以上內容為拼接要列印的html頁面------------------ var oldstr = document.body.innerHTML;//獲取原本網頁頁面程式碼 document.body.innerHTML = head + newstr + foot;//拼接列印頁面 if (getExplorer() == "IE") {//判斷是否IE瀏覽器,是,呼叫去除頁首頁尾的方法,否,直接輸出即可 pagesetup_null(); } window.print(); document.body.innerHTML = oldstr;//還原網頁; return false; } }, "Json"); } function pagesetup_null() { var hkey_root, hkey_path, hkey_key; hkey_root = "HKEY_CURRENT_USER"; hkey_path = "\\Software\\Microsoft\\Internet Explorer\\PageSetup\\"; try { var RegWsh = new ActiveXObject("WScript.Shell"); hkey_key = "header"; RegWsh.RegWrite(hkey_root + hkey_path + hkey_key, ""); hkey_key = "footer"; RegWsh.RegWrite(hkey_root + hkey_path + hkey_key, ""); } catch (e) { } } function getExplorer() { var explorer = window.navigator.userAgent; //ie if (explorer.indexOf("MSIE") >= 0) { return "IE"; } //firefox else if (explorer.indexOf("Firefox") >= 0) { return "Firefox"; } //Chrome else if (explorer.indexOf("Chrome") >= 0) { return "Chrome"; } //Opera else if (explorer.indexOf("Opera") >= 0) { return "Opera"; } //Safari else if (explorer.indexOf("Safari") >= 0) { return "Safari"; } }

結果截圖展示:
這裡寫圖片描述

這裡寫圖片描述

如有問題,請加我QQ:631931078或352167311