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 的内容保存为图像。
任何像 frame.print() 这样自动打开打印窗口的方法。
提前致谢。
如果您的父文档和 iframe 的文档在同一个域中,您可以执行以下操作:
var idoc = document.getElementsByTagName("iframe")[0].contentWindow.document; window.open(idoc.getElementById("idOfImageInTheIframe").src, "download_win");
否则(不在同一个域上),将引发安全异常。