JavaScript confirm box with custom buttons

后端 未结 3 453
伪装坚强ぢ
伪装坚强ぢ 2020-12-18 23:05

Can I write a custom confirm box in JavaScript that, instead of the default OK and CANCEL button, shows a SAVE and DELETE

3条回答
  •  我在风中等你
    2020-12-18 23:38

    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.

提交回复
热议问题