找到此代码来打印我修改的 javascript 元素。虽然我添加了document.title
和<title></title>
标签,但在常规文本编辑器中打开的窗口显示untitled
.
这通常是文本保存之前的情况。有没有办法显示标题?
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);