IE6,7,8下脸部框弹出问题
我正在使用CI。 我正在弹出窗口中加载一个视图页面。 当这个视图被修改时。 它没有在弹出窗口中显示正确的最新更新内容。但它显示的是弹出窗口打开时第一次加载的内容。 请帮忙。
I am using CI.
I am loading one view page in popup.
when this view is modified.
It's not showing the correct latest updated content in pop up. but it shows the content that is loaded at the first time when pop up is opened.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它与 Ie7 中的“堆栈跟踪溢出”错误有关。我通过先调用所有脚本并最后调用facebox.js 之前调用依赖项来修复此问题。
It's related to the "Stack Trace Overflow" error in Ie7. I've fixed it by calling all scripts first and dependencies before calling the facebox.js last.
这是因为当我们点击任何按钮或链接并打开这个弹出窗口时,页面不会刷新,但它只打开隐藏的div。所以它显然会出现以前的数据。您必须在提交后刷新此页面。
试试这个,可能有效。
谢谢。
its because when we click on any button or link and open this pop-up at that time page is not getting refreshed but its only open the hidden div.so its obviously come up with the previous data.you have to refresh this page after submitting.
Try this, may work.
Thanks.