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.
javascriptを使用して、画像やその他の情報を含むIframeのコンテンツをImageとして保存する必要があります。
印刷ウィンドウを自動的に開く frame.print() などのメソッド。
前もって感謝します。
親ドキュメントと iframe のドキュメントが同じドメインにある場合は、次のように実行できます。
var idoc = document.getElementsByTagName("iframe")[0].contentWindow.document; window.open(idoc.getElementById("idOfImageInTheIframe").src, "download_win");
それ以外の場合 (同じドメイン上にない場合)、セキュリティ例外がスローされます。