如何在 Firefox 中禁用“另存为”对话框
如何在按 Ctrl+S 时禁用“另存为”对话框
说明:我正在开发一个 Web 应用程序。这里,当我要使用“Ctrl+S”提交表单时,在提交之前,Firefox 中将打开“另存为”对话框。如何禁用Firefox 中的另存为对话框。
How to disable Save As dialog while pressing Ctrl+S
Description: I am developing one web application.Here When i am going to form submitting using "Ctrl+S",In Firefox before submitting "save As dialog" will open.How to disable save As dialog in Firefox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过处理窗口的
onkeypress
事件来检查CTRL
键和S
是否被按下来完成此操作,如果是,则取消该事件通过在事件对象上调用preventDefault()
:请注意,按键事件在不同浏览器中的行为可能有所不同。然而,这在 FireFox 中确实有效。
You can accomplish this by handling the window's
onkeypress
event to check whether theCTRL
key andS
are depressed, and if so, canceling the event from by callingpreventDefault()
on the event object:Note that the keypress event may behave differently in different browsers. This did work in FireFox, however.