找到此代碼以打印我修改的JavaScript元素。儘管我添加了document.title
和<title></title>
標籤,但在常規文本編輯器中打開的窗口顯示爲untitled
。JavaScript打印的窗口標題
這通常是保存文本之前的情況。無論如何,有沒有辦法顯示標題?
var element=document.getElementById(element_id);
var newWin=window.open('','Print-Window','width=400,height=400,top=100,left=100');
newWin.document.open();
newWin.document.title = "Readings on PageLinks";
newWin.document.write('<html><head><title>'+newWin.document.title+'</title></head><body onload="window.print()">'+element.innerHTML+'</body></html>');
newWin.document.close();
setTimeout(function(){ newWin.close(); },10);
爲什麼不?。newWin.document.write(」
這並沒有有所作爲我有這樣的第一 – user823527
必須的有一些不同的東西或其他地方犯了一個錯誤,至少對於我的電腦來說是這樣的 – Huangism