如何在 Firefox 中禁用“另存为”对话框

发布于 2024-11-29 17:25:04 字数 129 浏览 1 评论 0原文

如何在按 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网名女生简单气质 2024-12-06 17:25:04

您可以通过处理窗口的 onkeypress 事件来检查 CTRL 键和 S 是否被按下来完成此操作,如果是,则取消该事件通过在事件对象上调用 preventDefault()

window.onkeypress = function(event) {
    if (event.charCode === 115 && event.ctrlKey) {
        event.preventDefault();
        // your code here....
        alert("'Save As' dialog suppressed!");
    }
};

请注意,按键事件在不同浏览器中的行为可能有所不同。然而,这在 FireFox 中确实有效。

You can accomplish this by handling the window's onkeypress event to check whether the CTRL key and S are depressed, and if so, canceling the event from by calling preventDefault() on the event object:

window.onkeypress = function(event) {
    if (event.charCode === 115 && event.ctrlKey) {
        event.preventDefault();
        // your code here....
        alert("'Save As' dialog suppressed!");
    }
};

Note that the keypress event may behave differently in different browsers. This did work in FireFox, however.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文