我的问题是我正在尝试更新div
内容(id="content"
)
从表单提交加载后从框架内容。
表单属性action="test.php"
和target="source"
,即框架名称。
代码示例位于:JSBin
test.php
的结果是:
<script type="text/javascript">
window.parent.top.getElementById('content').innerHtml = "Western";
</script>
答案 0 :(得分:0)
您需要一份文件参考:
window.parent.document.getElementById('content').innerHtml = "Western";