印刷プレビュー機能を実装する
php メソッド: 最初に現在のページの HTML コードを取得し、次に印刷開始領域と印刷終了領域を設定し、次に開始コードと終了コードから HTML を逆方向にフェッチします。印刷する内容を決定するのが最善です。
おすすめ:「PHP ビデオチュートリアル 」
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で印刷プレビュー機能を実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。