2

これらのリンク(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>");
4

1 に答える 1

4

ファイルは HTML ファイルではなく PDF ファイルです。

于 2012-07-12T09:33:57.457 に答える