“JQuery Dialalog TAK NIE” Kod odpowiedzi

JavaScript Potwierdź tak nie

var proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}
Scriper

JQuery Alert z tak nie

    if (confirm('Are you sure ?')) {
        console.log('ok');
    }else
    {
      console.log('cancel')
    }
Agreeable Angelfish

Przykład okna dialogowego potwierdzenia JQuery

$("#complexConfirm").confirm({
    title:"Delete confirmation",
    text:"This is very dangerous, you shouldn't do it! Are you really really sure?",
    confirm: function(button) {
        alert("You just confirmed.");
    },
    cancel: function(button) {
        alert("You aborted the operation.");
    },
    confirmButton: "Yes I am",
    cancelButton: "No"
});
Ugliest Unicorn

JQuery Dialalog TAK NIE

if (confirm('Are you sure ?')) {
        console.log('ok');
    }else
    {
      console.log('cancel')
    }
Pleasant Panther

Odpowiedzi podobne do “JQuery Dialalog TAK NIE”

Pytania podobne do “JQuery Dialalog TAK NIE”

Więcej pokrewnych odpowiedzi na “JQuery Dialalog TAK NIE” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu