Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的文档中包含了一个 iframe,现在我想在"window.open"不更改 iframe 上下文的情况下在一个窗口中打开它。
"window.open"
是否可以在不更改上下文的情况下在窗口中打开现有 iframe?
尝试这样的事情:
var w = window.open(null,'test',[800,600]); $(w.document.body).append($('iframe').contents().find('html'));
基本上只是打开一个标题为“测试”和特定宽度和高度的新窗口,并将 iframe 中的内容附加到新打开的窗口中。
您确实需要获得该 iframe 的许可(它需要在您自己的域中)。
标签