使用document.open或javascript从弹出窗口中的URL打开文件

时间:2014-04-15 23:23:36

标签: javascript jquery html

我有以下代码可以正常工作但有没有办法以这种方式打开文件?

var a = window.open('', '', 'width=662,height=580,resizable=1,scrollbars=1,left=' + x + ',top=' + y + ',screenX=' + x + ',screenY=' + y);

a.document.open("text/html");
a.document.write("<html><body><div>");
a.document.write(output);
a.document.write("</div></body></html>");
a.document.close();
a.print();
//a.close();

我想要一个url打开而不是所有document.writes。

0 个答案:

没有答案