0

我有一个列表视图,其中包含使用 jQuery 和thickbox 打开 iframe 的链接。这个新窗口允许用户使用 iframe 编辑字段信息。更新按钮 -

<input type="submit" name="bUpdateDate" value="Update" 
onclick="self.parent.location.reload(true);self.parent.tb_remove();"
id="bUpdateDate" />

此刷新在 IE 中运行良好,但 Firefox 和 Chrome 都不会重新绑定列表视图。我已经尝试过没有缓存的元标记,以及 HttpCacheability.NoCache 和 IIS 标头内容过期,但似乎没有什么能够强制刷新 Firefox。如何让我的列表视图从子 iframe 重新绑定?

4

3 回答 3

0

jQuery 1.3.3 发布后将对 iFrame 绑定提供更好的支持http://brandonaaron.net/blog/2009/05/14/jquery-edge-better-support-for-other-windows-and-documents

您也许可以获得最新的信息并取得更大的成功。

于 2009-05-21T20:40:19.403 回答
0

作为另一种选择,是否

top.location.reload(true)

工作?

于 2009-05-21T21:10:55.223 回答
0

在这里找到适合我的解决方案:http ://www.zdima.net/blog/archives/398

于 2009-06-19T16:10:10.527 回答