IE提示未保存的表单数据
我在 IE7(可能还有其他版本)中遇到意外的“烦人”弹出窗口。正如预期的那样,IE 在关闭窗口时会提示您有关未保存的表单数据,这很好。但是我在 div
中有一个 form
,现在当我在 none
和 之间切换
,IE 认为我正在关闭带有未保存数据的表单,并显示有关关闭未保存表单的警告!我不希望我的用户在我的基于 IE 的 Web 应用程序中简单地隐藏表单时感到恼火。display
CSS 样式时>block
有人知道如何克服这个问题吗?
I'm having an unexpected "annoying" popup in IE7 (and possibly other versions). As expected IE prompts you about unsaved form data when closing the window which is fine. But I have a form
inside a div
and now when I toggle the display
CSS style between none
and block
, IE thinks I'm closing the form with unsaved data and shows the warning about closing an unsaved form! I don't want my users to be annoyed when simply hiding a form in my IE-based web app.
Anyone know how to overcome this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您的文档类型是过渡性的而不是严格的
Make sure that your doc type is transitional rather than strict
该提示不是 IE 的 - 您的 HTML 有一个触发警告的 onbeforeunload 处理程序。
The prompt isn't IE's-- your HTML has an onbeforeunload handler which triggers the warning.