Contoh
Periksa dan centang tombol radio tertentu:
function check() {
document.getElementById("red").checked = true;
}
function uncheck() {
document.getElementById("red").checked = false;
}
Cobalah sendiri " Definisi dan Penggunaan
Diperiksa set properti atau mengembalikan keadaan diperiksa dari tombol radio.
Properti ini mencerminkan atribut HTML diperiksa.
Dukungan Browser
Properti diperiksa didukung di semua browser utama.
Sintaksis
Kembali properti diperiksa:
radioObject .checked
Mengatur properti diperiksa:
radioObject .checked=true|false
Nilai properti
Nilai | Deskripsi |
---|---|
true|false | Menentukan apakah tombol radio harus diperiksa atau tidak.
|
Rincian teknis
Kembali Nilai: | Sebuah Boolean, mengembalikan true jika tombol radio diperiksa, dan false jika tombol radio tidak dicentang |
---|
Contoh lebih
Contoh
Cari tahu apakah tombol radio dicentang atau tidak:
var x = document.getElementById("myRadio").checked;
Hasil x akan:
true
Cobalah sendiri " Contoh
Gunakan tombol radio untuk mengubah teks dalam sebuah field input ke huruf besar:
document.getElementById("fname").value = document.getElementById("fname").value.toUpperCase();
Cobalah sendiri " Contoh
Beberapa tombol radio dalam bentuk:
var coffee = document.forms[0];
var
txt = "";
var i;
for (i = 0; i < coffee.length; i++) {
if
(coffee[i].checked) {
txt = txt +
coffee[i].value + " ";
}
}
document.getElementById("order").value = "You ordered a coffee with: " + txt;
Cobalah sendiri " Pages terkait
Referensi HTML: HTML <input> atribut diperiksa
<Masukan Obyek Radio