《前端》列印功能 2023年8月27日

2021-10-23 21:40:54 字數 715 閱讀 8985

//根據div標籤id拿到div中的區域性內容

bdhtml = window.document.body.innerhtml;

var jubudata = document.getelementbyid("printcontent").innerhtml;

//把獲取的 區域性div內容賦給body標籤, 相當於重置了 body裡的內容

window.document.body.innerhtml = jubudata;

//呼叫列印功能

window.print();

window.document.body.innerhtml = bdhtml; //重新給頁面內容賦值;

return false;

var printbox = document.getelementbyid('printbox'); //獲取需要列印的內容

var newwin = window.open(window.document.url); //新開啟乙個標籤頁,這樣不會影響現使用的頁面

var newcontent =printbox.innerhtml;

newwin.document.body.innerhtml = newcontent; //將列印的部分賦值給新開啟的標籤頁

newwin.print();//執行列印

newwin.close();//關閉列印視窗

2023年8月27記錄

1.python cv2 包 import cv2 img cv2.imread imgfile cv2.imshow img win name img cv2.waitkey 0 無限期等待輸入 cv2.imwrite write file name img 2.scikit image 包 im...

os模組 2023年8月16

os.getcwd 獲取當前工作目錄,即當前python指令碼工作的路徑。os.chdir 改變當前指令碼的工作目錄。os.makedirs dirname1 dirname2 可生成多層遞迴目錄 os.removedirs dirname1 若目錄為空,則刪除,並遞迴到上一級目錄,若也為空,則刪除...

前端面試經驗2023年10月

本人2020年10月中旬辭職,經驗一年半左右,到現在,一共面試了10家公司,有5家公司發offer了,座標在安徽合肥,現在已入職心儀的公司,特來分享自己的面試經驗,整理一下面試被問到的題目 這些題目針對經驗一年半左右的 答案基本上網上可以直接搜到 如果下面的問題你都能回答上來,那麼恭喜你少年,你這波...