带有自定义按钮的 JavaScript 确认框
我可以在 JavaScript 中编写一个自定义确认框,而不是默认的 OK
和 CANCEL
按钮,而是显示 SAVE
和 DELETE< /代码> 按钮?
Can I write a custom confirm box in JavaScript that, instead of the default OK
and CANCEL
button, shows a SAVE
and DELETE
button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为此,请使用 jQuery UI 对话框。
你可以这样做:
JS:
Use the jQuery UI Dialog Box for this.
You can do something like this:
JS:
不适用于本机 JavaScript 确认框。您可以使用模拟模式对话框的众多 JavaScript UI 组件之一来执行此操作。
这是一个示例: https://jqueryui.com/dialog/#modal-confirmation
我从未使用过此功能,因此使用风险自负。
Not with the native JavaScript confirm box. You could use one of the many JavaScript UI components that emulate modal dialogs to do this instead.
Here's an example: https://jqueryui.com/dialog/#modal-confirmation
I've never used this so use at your own risk.
这应该可以工作,但您需要下载或链接到 jQuery 和 jQuery UI 库才能运行它。
This should work, but you will need to download or link to jQuery and the jQuery UI libraries to run this.