如何打印在弹出窗口中打开的 html 页面?
我尝试的是:
function printFile() {
var w = window.open('test.htm', 'name', 'width=200,height=200');
w.focus();
w.print();
}
但上面的代码总是打印 about:blank。
如何打印在弹出窗口中打开的 html 页面?
我尝试的是:
function printFile() {
var w = window.open('test.htm', 'name', 'width=200,height=200');
w.focus();
w.print();
}
但上面的代码总是打印 about:blank。