0

我有一个 HTML 页面 (index.htm) 和一个链接。单击该链接会打开一个 ColorBox iFrame (popup.htm),它是一个带有提交按钮的表单。

现在,当有人在该 popup.htm 页面中提交表单时,我需要 index.htm 自动刷新到 -> index2.htm。

我已经尝试过这个和变化,但没有成功。

<form onsubmit="window.opener.location = 'http://www.myDomain.com/index2.htm';">
4

1 回答 1

0

你试过吗<form onsubmit="window.top.location.href = 'http://www.myDomain.com/index2.htm';">当然 iframe 和 top 必须在同一个域上,并且不要破坏同源策略。

于 2013-02-22T18:12:04.360 回答