最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - YesNo buttons instead of OKCancel in a confirm() dialog? - Stack Overflow

programmeradmin1浏览0评论

In an Adobe AIR (HTML/JS) app, is it possible to display Yes/No buttons, instead of OK/Cancel in a confirm() dialog?

Anything that works with webkit should work.

Here's a related question, but all of the answers utilise jQuery, which I don't want to add just for this.

In an Adobe AIR (HTML/JS) app, is it possible to display Yes/No buttons, instead of OK/Cancel in a confirm() dialog?

Anything that works with webkit should work.

Here's a related question, but all of the answers utilise jQuery, which I don't want to add just for this.

Share Improve this question edited May 23, 2017 at 11:50 CommunityBot 11 silver badge asked Mar 16, 2013 at 8:46 Danny BeckettDanny Beckett 20.9k26 gold badges113 silver badges142 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 3

I don't believe so. In JS, confirm() is specified to only use the OK and Cancel buttons.

If you want something more plicated, you'll have to make your own dialog, or use a third-party one that provides your desired functionality (yes, including jQuery, unfortunately).

It's not possible to customise the confirm() dialog.

There are some suggestions at Javascript Customize Confirm with "Yes" or "No" but it pins down to using jQuery or implementing your own version of the jQuery dialog.

The closest native solution I can think about is using the new <dialog> element.

The following example is the simplest one taken from the link above, as the dialog is made of HTML you can customize it as you want. Browse the link for advanced examples.

const dialog = document.querySelector("dialog");
const showButton = document.querySelector("dialog + button");
const closeButton = document.querySelector("dialog button");

// "Show the dialog" button opens the dialog modally
showButton.addEventListener("click", () => {
  dialog.showModal();
});

// "Close" button closes the dialog
closeButton.addEventListener("click", () => {
  dialog.close();
});
::backdrop {
  background-image: linear-gradient(
    45deg,
    magenta,
    rebeccapurple,
    dodgerblue,
    green
  );
  opacity: 0.75;
}
<dialog>
  <button autofocus>Close</button>
  <p>This modal dialog has a groovy backdrop!</p>
</dialog>
<button>Show the dialog</button>

发布评论

评论列表(0)

  1. 暂无评论