“JavaScript Konfirmasi Hapus” Kode Jawaban

JavaScript Konfirmasi Hapus

<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
Talented Thrush

konfirmasi di delete

 <a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
Code Alchemy

Comfirm sebelum hapus

<a href="#" title="delete" class="delete" onclick="return confirm('Are you sure you want to delete this item')">Delete</a>
Navbro

Cara Menampilkan Pesan Konfirmasi Sebelum Hapus Menggunakan JQuery

<button onclick="return confirm('Are you sure you want to Delete?');" 
id="btnDelete">DELETE</button>
Light Leopard

JavaScript Konfirmasi Hapus

var result = confirm("Want to delete?");
if (result) {
    //Logic to delete the item
}
Bored Bee

Jawaban yang mirip dengan “JavaScript Konfirmasi Hapus”

Pertanyaan yang mirip dengan “JavaScript Konfirmasi Hapus”

Lebih banyak jawaban terkait untuk “JavaScript Konfirmasi Hapus” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya