如何使用iframe添加

时间:2017-04-07 17:27:03

标签: jquery iframe

我有jquery行允许我open.window并访问一个非常有用的HTML文件。请参阅示例代码。

<iframe>

我想在window.open上添加<Iframe>,...如何编写代码以在打开的窗口中添加大小为200px×200px的<iframe>并在{{}内显示HTML文件1}}!

1 个答案:

答案 0 :(得分:0)

你不需要这个jQuery。你可以用Javascript轻松完成。

// Change "src" of iframe with your html Link
var iframe = "<iframe src='https://wiki.selfhtml.org/wiki/JavaScript/Window/open' width='200' height='200'></iframe>";

var openWindow = window.open("", "Opened Window", "width=500,height=500,location=no");

openWindow.document.write(iframe);

示例:https://jsfiddle.net/06hpd7p7/1/

我认为,这就是你所需要的一切