我有以下代码可以正常工作但有没有办法以这种方式打开文件?
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。