从window.open()调用jquery函数

时间:2017-02-20 10:36:15

标签: javascript jquery

我遇到了问题。我需要从文件加载模板并将其写入新的window.document

var newWindow = $window.open();
newWindow.document.write('<html><head><title></title>');
newWindow.document.write('</head><body >');
newWindow.document.write('<div id="element">test</div>');
newWindow.document.write('</body></html>');
$(printWindow.document).load('template.html  #element')
newWindow.document.close();

并且$(printWindow.document).load('template.html #element')不起作用。

我该如何实现?

0 个答案:

没有答案