window.print()适用于除一个网址之外的网址

时间:2012-07-12 09:33:04

标签: javascript printing window

这些链接(iframe src)有什么区别? window.print()适用于

var myWindow=window.open('','','fullscreen=yes');
myWindow.document.write("<iframe src=\"http://stackoverflow.com/questions/11447382/window-print-does-not-take-the-current-url\" width=\"100%\" height=\"100%\"></iframe>");
myWindow.document.write('<iframe src="' + url + '" width="100%" height="100%"></iframe>');myWindow.document.close();                            
myWindow.focus();
myWindow.print();

但不适用于

myWindow.document.write("<iframe src=\"http://localhost:8080/hiringsteps/docs/Keneth _1340800082258/Keneth _resume_1340800082258.pdf\" width=\"100%\" height=\"100%\"></iframe>");

1 个答案:

答案 0 :(得分:3)

该文件是PDF文件,而不是HTML文件。

相关问题