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 중국어 웹사이트의 기타 관련 기사를 참조하세요!