標籤:列印 網頁 js 表單 jquery外掛程式 完整性
有關網頁列印,可以使用的方法有:“1.點擊滑鼠右鍵,選擇預覽列印,執行列印;2.按鍵盤上的[print sc sysrq]按鈕”;還有列印當前網頁的方法就是,用相關代碼來實現,這裡用到的是js;其實用js列印網頁很簡單,最為重要的就是print()這個函數。
但是簡單也不要掉以輕心,不同地方用到,處理方式也需要注意,不然也會得到一些自己不想的結果。
1.列印整個網頁的內容:
window.print();
2.列印指定id/class的網頁內容:
<script>
function printdiv(printpage)
{
var headstr = "<html><head><title></title></head><body>";
var footstr = "</body>";
var newstr = document.all.item(printpage).innerHTML;
var oldstr = document.body.innerHTML;
document.body.innerHTML = headstr+newstr+footstr;
window.print();
document.body.innerHTML = oldstr;
return false;
}
</script>
● 以上方法在本頁面有表單時,可能會對資料完整性造成影響,換成下面的方法代替可解決這個問題:
var divToPrint = document.getElementById("myMreview");
newWin = window.open();
newWin.document.write(divToPrint.innerHTML);
newWin.document.close();
newWin.focus();
newWin.print();
newWin.close();
>> 原因是因為,前者是在本頁面內容替換,相關的資料可能被替換掉了,再來找就找不到了;後者是在新的頁面進行列印操作,不影響前一個頁面資料。
3.可以使用jquery外掛程式:
PrintArea
jqprint
Fingerprint
printpage
Lodop
等等...
本文出自 “Shows technology” 部落格,請務必保留此出處http://wangzhijun.blog.51cto.com/9660708/1613078
用js代碼控制列印網頁