我有这样的事情:
<!doctype html>
<html>
<body>
<iframe id="someFrame"></iframe>
</body>
</html>
我想使用 jQuery 来编写元素,使完整的等效 HTML 如下所示:
<!doctype html>
<html>
<body>
<iframe id="someFrame">
<!-- inside the iframe's content -->
<!-- <html><body> -->
<div>A</div>
<div>B</div>
<div>C</div>
<!-- </body></html> -->
</iframe>
</body>
</html>
或者,任何普通的旧 Javascript 都可以。
谢谢。
编辑:经过更多研究,似乎我正在寻找 iframe 的 contentDocument 属性的 IE 等效项。“contentDocument”是 FF 支持的 W3C 标准,但 IE 不支持。(惊喜惊喜)