“JavaScript Nonaktifkan tombol” Kode Jawaban

JavaScript Nonaktifkan tombol

//disable the button
document.getElementById(BUTTON_ID).disabled = true;
//reable the button
document.getElementById(BUTTON_ID).removeAttribute('disabled');
Friendly Hawk

membuat tombol dinonaktifkan javascript

// Makes the button disabled

document.getElementById("myButtonId").setAttribute("disabled", ""); 

// Removes disabled attribute

document.getElementById("myButtonId").removeAttribute("disabled");
ayaan

JavaScript Nonaktifkan tombol

document.getElementById(BUTTON_ID).disabled = true;
Lovely Lion

Tombol Nonaktifkan di JS

document.getElementById("submitButtonId").disabled = true;
Weary Weevil

Aktifkan tombol HTML

$('#Button').prop('disabled', true);
Different Dragonfly

Nonaktifkan tombol di JavaScript

//to enable btn
let temp
   temp = document.getElementById("saveBtnId") as HTMLButtonElement
   if (temp) {
     temp.removeAttribute('disabled');
   }

//disable
if (temp) {
     temp.disabled = true;
   }
Mohan Eswar

Jawaban yang mirip dengan “JavaScript Nonaktifkan tombol”

Pertanyaan yang mirip dengan “JavaScript Nonaktifkan tombol”

Lebih banyak jawaban terkait untuk “JavaScript Nonaktifkan tombol” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya