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.
"window.open"ドキュメントに iframe が含まれていたので、iframe のコンテキストを変更せずにウィンドウで開きたいと思います。
"window.open"
コンテキストを変更せずに既存の iframe をウィンドウで開くことは可能ですか?
次のようなことを試してください:
var w = window.open(null,'test',[800,600]); $(w.document.body).append($('iframe').contents().find('html'));
基本的に、タイトルが「test」で特定の幅と高さの新しいウィンドウを開き、iframe のコンテンツをその新しく開いたウィンドウに追加するだけです。
その iframe からのアクセス許可が必要です (独自のドメインにある必要があります)。