【发布时间】:2012-03-10 06:23:22
【问题描述】:
我想我有一个简单的问题,但我还没有找到正确的答案。
我的页面中有一个来自外部域的 iframe。提交此 iframe 内的表单后,我想重定向整个页面,而不仅仅是 iframe 内的内容 - 我想正确的实现方法可能是通过“target”属性。
示例 html:
<html>
<body>
<h1>main page</h1>
<iframe src="http://example.com">
<form url="http://example.com/action">
...
</form>
</iframe>
</body>
</html>
提交表单应该会显示提交 POST 请求作为新页面(不在 iframe 中)的结果
【问题讨论】: