在打开的窗口中的 iframe 中使用 iframe 上的 getElementById
我正在尝试更改位于 iframe (a) 中的某个文本字段的值,该文本字段是新窗口 (b) 的打开者,它在其位置包含一个 iframe (c),我想从中更改该值。
示意性地看起来像 (a) --> (b(c))
所以基本上我应该有类似的东西
<a onClick="parent.opener.getElementById('Message').value+='NewValue'">LinkName</a>
除了这不起作用并给我错误
未捕获类型错误:对象 [object DOMWindow] 没有方法“getElementById”
I'm trying to alter the value of a certain textfield that's located in the iframe (a) that is the opener of a new window (b), which in his place contains an iframe (c) from which i want to alter that value.
Schematically it looks like (a) --> (b (c))
So basically I should have something like
<a onClick="parent.opener.getElementById('Message').value+='NewValue'">LinkName</a>
Except this doesn't work and gives me the error
Uncaught TypeError: Object [object DOMWindow] has no method 'getElementById'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试parent.opener.document.getElementById()
Try parent.opener.document.getElementById()