问题标签 [confirm]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
21185 浏览

javascript - 在 javascript 确认对话框中更改标题和选项

我想将我的项目标题添加到 javascript 确认对话框中,并且想将“确定”和“取消”更改为“是”和“否”。我怎样才能做到这一点?

0 投票
2 回答
1078 浏览

ruby-on-rails - Rails - 在 link_to 中动态切换确认消息

我正面临这种丑陋的重复,以便在我看来显示不同的确认消息。

我很高兴知道是否有办法避免这种情况?

谢谢!

编辑:

0 投票
2 回答
3702 浏览

jquery - onbeforeload 事件时确认警报来了两次

我在 beforeload 事件上有一个确认框 - 代码如下:

问题是 - 确认警报显示两次。我在 stackoverflow 上进行了搜索,并收到了很多关于这个问题的问题。但我的有点不同。显示两次的确认警报不同。对于 FF,消息是相同的,但对于第二个确认框中的 Crome,消息是false.

提前致谢。

0 投票
1 回答
564 浏览

javascript - jquerymobile 确认似乎不会影响结果?

这是来自 jquerymobile 应用程序的片段。这是一个简单的文件管理器,允许删除文件,我想确认删除。我正在尝试使用 javascript确认来仔细检查一个动作是否应该继续;但似乎无论我做什么,我都无法阻止它的发生。

您可以看到我尝试了 3 种不同的方法来阻止链接重定向页面,但它们似乎都没有达到我的预期。我究竟做错了什么?

0 投票
3 回答
88374 浏览

css - 如何仅使用 CSS 设置默认确认框的样式?

我想在不使用任何其他 JavaScript 代码的情况下设置标准 window.confirm 的样式,只使用 CSS。甚至可能吗?如果是,我该怎么做?

0 投票
1 回答
496 浏览

jquery - JQUERY LIVE 确认问题

我的问题与我正在对其运行确认的页面动态应用元素有关。代码正确定位元素并询问确认部分,但问题是如果我选择是,我不知道返回值隐藏在哪里,它没有像我下面的想法那样在类中设置,也没有返回值各种各样的。

任何人都知道如何从要删除的元素的确认中获得某种形式的返回值?

0 投票
1 回答
57616 浏览

jquery - 使用 confirm() 拦截 jQuery.ajax() 调用

我有一个通过 jQuery 绑定到链接的 ajax 调用,我希望它被确认对话框拦截。但是无论选择哪个选项,ajax 调用都会触发(即使用户只是关闭对话框)。

有没有办法让确认像在同步上下文中一样工作?

HTML:

jQuery:

0 投票
1 回答
871 浏览

jquery-ui - How to re-trigger a form submit event in jQuery UI dialog callback

I'm trying to use a jQuery UI Dialog for a sort of "soft" validation--if the form looks suspicious, warn the user, but allow them to continue the submission anyway:

I've checked this out with a bunch of debugging alert statements. The control flow is exactly what I expect. If I first fail dataLooksFishy(), I am presented with the dialog and the method returns false asynchronously.

Clicking "yes" does re-trigger this method, and this time, the method returns true, however, the form does not actually submit...

I'm sure I'm missing a better methodology here, but the main target is to be able to simulate the behavior of the synchronous confirm() with the asynchronous dialog().

0 投票
1 回答
5411 浏览

javascript - 我可以通过使用 javascripts 确认来停止回帖吗?

我有一个 aspx 页面,页面上有一个 asp.net 按钮:

确认删除如下所示:

我曾假设如果用户单击取消,这将阻止页面回发,但它似乎仍在回发。有什么方法可以防止使用确认回发吗?

0 投票
6 回答
469951 浏览

javascript - JavaScript 表单提交 - 确认或取消提交对话框

对于一个带有询问字段是否正确填写的警报的简单表单,我需要一个执行此操作的函数:

  • 单击按钮时显示一个警告框,有两个选项:

    • 如果单击“确定”,则提交表单
    • 如果单击取消,则警告框关闭,并且可以调整并重新提交表单

我认为 JavaScript 确认会起作用,但我似乎无法弄清楚如何。

我现在的代码是: