“dialog konfirmasi jQuery ya tidak” Kode Jawaban

JavaScript Konfirmasi Ya Tidak

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

peringatan jQuery dengan ya tidak

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

contoh dialog konfirmasi 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

dialog konfirmasi jQuery ya tidak

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

Jawaban yang mirip dengan “dialog konfirmasi jQuery ya tidak”

Pertanyaan yang mirip dengan “dialog konfirmasi jQuery ya tidak”

Lebih banyak jawaban terkait untuk “dialog konfirmasi jQuery ya tidak” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya