gpt4 book ai didi

javascript - 如何使用 Javascript 访问 iframe 元素?

转载 作者:行者123 更新时间:2023-12-01 00:31:02 26 4
gpt4 key购买 nike

我有一个网页,其中 iframe 中有一个文本区域。我需要从其子页面 JavaScript 中读取此文本区域的值。目前,通过在 JavaScript 中使用 window.parent.getelementbyID().value,我可以获取父页面中除 iframe 内的文本区域之外的所有控件的值。

我的父页面中的框架ID和框架名称在运行时发生变化,因此我们不能使用框架ID/框架名称作为引用。

最佳答案

如果您有 HTML

<form name="formname" .... id="form-first">
<iframe id="one" src="iframe2.html">
</iframe>
</form>

和 JavaScript

function iframeRef( frameRef ) {
return frameRef.contentWindow
? frameRef.contentWindow.document
: frameRef.contentDocument
}

var inside = iframeRef( document.getElementById('one') )

inside 现在是对文档的引用,因此您可以执行 getElementsByTagName('textarea') 以及您喜欢的任何操作,具体取决于 iframe src 中的内容。

关于javascript - 如何使用 Javascript 访问 iframe 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29716345/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com