日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

原生js打印指定节点元素

發布時間:2023/12/6 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 原生js打印指定节点元素 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

很簡單(可粘貼至txt文檔后改后綴為html打開看效果):

<!doctype html> <html lang="en"> <head><meta charset="utf-8"><title>打印</title><meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body><div><span style="color:red">這里不打印 !!!</span> </div><div id="printDiv"><span style="color:green">打印這里!!</span> </div> <button onclick="print()">打印</button><script>function print(){// 設置要打印內容的 id: printDivconst WindowPrt = window.open('', '打印', 'width=' + (screen.availWidth - 10) + ',height=' + (screen.availHeight - 50) + ',left=0,top=0,location=0,menubar=0,toolbar=0,scrollbars=0,status=0'); // 裸全屏WindowPrt.document.head.innerHTML = window.document.head.innerHTML // 加入當前所有頭 - 以防樣式丟失WindowPrt.document.body.innerHTML = document.getElementById('printDiv').innerHTML; // 載入指定bodyWindowPrt.print() // 調用打印WindowPrt.close() // 自動等待print結束后執行} </script></body> </html>

將此方法放在主頁,傳入參數,實現公用(用原生onclick()事件調用):

<script>// 打印var rootPrint = function (elId) {// 設置要打印內容的 id: elIdconst WindowPrt = window.open('', '打印', 'width=' + (screen.availWidth - 10) + ',height=' + (screen.availHeight - 50) + ',left=0,top=0,location=0,menubar=0,toolbar=0,scrollbars=0,status=0'); // 裸全屏WindowPrt.document.head.innerHTML = window.document.head.innerHTML // 加入當前所有頭 - 以防樣式丟失WindowPrt.document.body.innerHTML = document.getElementById(elId).innerHTML; // 載入指定bodyWindowPrt.print() // 調用打印WindowPrt.close() // 自動等待print結束后執行}</script>

總結

以上是生活随笔為你收集整理的原生js打印指定节点元素的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。