js列印小結

看臉時代發表於2018-04-23
<script type="text/javascript"> 
//列印必備引數 var hkey_root,hkey_path,hkey_key; hkey_root="HKEY_CURRENT_USER"; hkey_path="\Software\Microsoft\Internet Explorer\PageSetup\"; //印表機設定 function toPageSetup(){ document.all.WebBrowser.ExecWB(8,1);//印表機設定 } //列印預覽 function toPreview(){ document.all.WebBrowser.ExecWB(7,1); } /* * 功能:列印 * 引數:isShowSetup 是否顯示列印設定 */ function printPage(isShowSetup){ pagesetup_null(); window.print(); } //配置網頁列印的頁首頁尾為空 function pagesetup_null(){ 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,""); //&b 第&p頁/共&P頁 &b }catch(e){} } </script>

 jsp中引入:

<OBJECT id=WebBrowser classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 width=0></OBJECT>

jsp中引入樣式:

<style media="print">
.Noprint {
display: none  //不列印的內容的class
}

.PageNext {
page-break-after: always;   //在元素後面插入分頁
}
</style>

 法二:直接全部引進去,做相關內容的替換(有提示!)呼叫方法即可


function
isIE(){ if (!!window.ActiveXObject || "ActiveXObject" in window) return true; else return false; } /** * 列印指定頁面 * @return */ function printPage() { window.focus(); if(isIE()){ //$(".td03").css("border","0px"); var printPage=document.getElementById("divPage");//要列印div的Id var oldStr=document.body.innerHTML; var newStr=printPage.innerHTML; document.body.innerHTML=newStr; pagesetup_null(); document.body.className += ` ext-ie`; document.execCommand(`print`, false, null); document.body.innerHTML=oldStr; return false; }else{ //$(".td03").css("border","0px");//去樣式 var printPage=document.getElementById("divPage");//要列印div的Id var oldStr=document.body.innerHTML; var newStr=printPage.innerHTML; document.body.innerHTML=newStr; pagesetup_null();//去頁首頁尾 window.print(); document.body.innerHTML=oldStr; return false; } //列印相關引數 var hkey_root,hkey_path,hkey_key; hkey_root="HKEY_CURRENT_USER"; hkey_path="\Software\Microsoft\Internet Explorer\PageSetup\"; //配置網頁列印的頁首頁尾為空 function pagesetup_null(){ 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,""); //&b 第&p頁/共&P頁 &b }catch(e){} }

 

相關文章