我的问题是,在从表单提交加载内容后,我正在尝试从框架内容更新div
内容(使用)。id="content"
其中表单属性action="test.php"
和target="source"
哪个是框架名称。
代码示例在这里:JSBin
结果test.php
是这样的:
<script type="text/javascript">
window.parent.top.getElementById('content').innerHtml = "Western";
</script>
我的问题是,在从表单提交加载内容后,我正在尝试从框架内容更新div
内容(使用)。id="content"
其中表单属性action="test.php"
和target="source"
哪个是框架名称。
代码示例在这里:JSBin
结果test.php
是这样的:
<script type="text/javascript">
window.parent.top.getElementById('content').innerHtml = "Western";
</script>