您好,登錄后才能下訂單哦!
這篇文章主要介紹了php實現打印預覽功能的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
php實現打印預覽功能的方法:首先獲取當前頁的html代碼;然后設置打印開始區域和打印結束區域;接著從開始和結束代碼向后取html;最好確定要打印的內容即可。
php 實現打印預覽的功能
<inputid="btnPrint" type="button" value="打印"onclick="javascript:window.print();" /> <inputid="btnPrint" type="button" value="打印預覽" onclick=preview(1)/> <styletype="text/css" media=print> .noprint{display : none} </style> <pclass="noprint">不須要打印的地方</p> <script> functionpreview(oper) { if (oper <10) { bdhtml=window.document.body.innerHTML;//獲取當前頁的html代碼 sprnstr="<!–startprint"+oper+"–>";//設置打印開始區域 eprnstr="<!–endprint"+oper+"–>";//設置打印結束區域 prnhtml=bdhtml.substring(bdhtml.indexOf(sprnstr)+18);//從開始代碼向后取html prnhtmlprnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));//從結束代碼向前取html window.document.body.innerHTML=prnhtml; window.print(); window.document.body.innerHTML=bdhtml; } else { window.print(); } } </script> <p>XXXXX</p> <!–startprint1–>要打印的內容<!–endprint1–> <inputid="btnPrint" type="button" value="打印"onclick="javascript:window.print();" /> <inputid="btnPrint" type="button" value="打印預覽" onclick=preview(1)/> <styletype="text/css" media=print> .noprint{display : none} </style> <pclass="noprint">不須要打印的地方</p> <script> functionpreview(oper) { if (oper <10) { bdhtml=window.document.body.innerHTML;//獲取當前頁的html代碼 sprnstr="<!–startprint"+oper+"–>";//設置打印開始區域 eprnstr="<!–endprint"+oper+"–>";//設置打印結束區域 prnhtml=bdhtml.substring(bdhtml.indexOf(sprnstr)+18);//從開始代碼向后取html prnhtmlprnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));//從結束代碼向前取html window.document.body.innerHTML=prnhtml; window.print(); window.document.body.innerHTML=bdhtml; } else { window.print(); } } </script> <p>XXXXX</p> <!–startprint1–>要打印的內容<!–endprint1–>
感謝你能夠認真閱讀完這篇文章,希望小編分享php實現打印預覽功能的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。