0

我的问题是,在从表单提交加载内容后,我正在尝试从框架内容更新div内容(使用)。id="content"

其中表单属性action="test.php"target="source"哪个是框架名称。

代码示例在这里:JSBin

结果test.php是这样的:

<script type="text/javascript">
window.parent.top.getElementById('content').innerHtml = "Western";
</script>
4

1 回答 1

0

您需要一个文档参考:

window.parent.document.getElementById('content').innerHtml = "Western";
于 2012-12-06T15:41:02.920 回答