我使用此代码将字符串添加到父窗口表单弹出窗口的元素:
window.opener.document.getElementById('myid').innerHTML += 'string';
现在我想将字符串添加到 iframe 表单 popup 的元素中。iframe 和父级都在同一个域中。我尝试此代码但不起作用:
parent.myframename.window.opener.document.getElementById('iframeelementid').innerHTML += 'string';
怎么了?有没有办法做到这一点?
谢谢你的帮助。
*更新*
这是我的完整代码。主页:
<html>
<head>
<script>
function myPopup() {
window.open( "pop.htm", "myWindow", "status = 1, height = 180px, width = 330px)
}
</script>
</head>
<body>
<textarea id="input"><iframe src="frame.html" name="myframe"></iframe> </textarea>
<a href="" onclick="myPopup()">Popup</a>
</body>
</html>
和pop.htm:
<html>
<head>
<script>
function insert() {
parent.myframe.window.opener.document.getElementById('inframe').innerHTML += 'asasasas';
window.close();
return false;
}
</script>
</head>
<body>
<input type="button" id="insert" onclick="insert()" value="insert" />
</body>
</html>
和 iframe.html:
<html>
<head>
</head>
<body>
<span id="inframe"></span>
</body>
</html>