最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why TypeError: document.getElementById() is null - Stack Overflow

programmeradmin0浏览0评论

Why the following code generates TypeError: document.getElementById("docPrint") is null

var printwindow = window.open('', '', 'fullScreen=no');
printwindow.document.write('<iframe id="docPrint" width="100%" height="100%" src="http://localhost:8080/hiring/docs/Keneth _1340800082258/Keneth _resume_1340800082258.pdf"></iframe>');
printwindow.self.focus();
document.getElementById('docPrint').focus();
document.getElementById('docPrint').contentWindow.print();

Why the following code generates TypeError: document.getElementById("docPrint") is null

var printwindow = window.open('', '', 'fullScreen=no');
printwindow.document.write('<iframe id="docPrint" width="100%" height="100%" src="http://localhost:8080/hiring/docs/Keneth _1340800082258/Keneth _resume_1340800082258.pdf"></iframe>');
printwindow.self.focus();
document.getElementById('docPrint').focus();
document.getElementById('docPrint').contentWindow.print();
Share Improve this question edited Jul 11, 2012 at 11:50 Esailija 140k23 gold badges279 silver badges328 bronze badges asked Jul 11, 2012 at 11:48 nr.iras.sknr.iras.sk 8,49829 gold badges83 silver badges117 bronze badges 1
  • 4 Did you consider that the element of id docPrint does not exist? Because that is most likely what it is. – David G Commented Jul 11, 2012 at 11:49
Add a ment  | 

3 Answers 3

Reset to default 3

You are operating across two windows.

printwindow.document.write
document.getElementById

If you want to get the element you created in the popup then you have to call it's gEBI method.

printwindow.document.write
printwindow.document.getElementById

You need to prefix your calls to document.getElementById with 'printwindow':

printwindow.document.getElementById('docPrint').focus();
printwindow.document.getElementById('docPrint').contentWindow.print();

You might also want to keep a reference to the element in a variable, to avoid the boilerplate

var el = printwindow.document.getElementById('docPrint');
el.focus();
el.contentWindow.print();

Prependprintwindow. to each instance of document.getElementById:

printwindow.document.getElementById('docPrint').focus();
printwindow.document.getElementById('docPrint').contentWindow.print();
发布评论

评论列表(0)

  1. 暂无评论