Contoh
Kembali nilai for atribut label:
var x = document.getElementById("myLabel").htmlFor;
Hasil x akan:
male
Cobalah sendiri " Definisi dan Penggunaan
The htmlFor set properti atau mengembalikan nilai for atribut label.
The for atribut menentukan yang berupa elemen label terikat.
Dukungan Browser
Properti bentuk didukung di semua browser utama.
Sintaksis
Kembali properti htmlFor:
labelObject .htmlFor
Mengatur properti htmlFor:
labelObject .htmlFor= id
Nilai properti
Value | Description |
---|---|
id | The id of the element the label is bound to |
Rincian teknis
Kembali Nilai: | Sebuah String, yang mewakili id dari elemen label terikat |
---|
Contoh lebih
Contoh
Mengubah nilai dari value atribut label:
document.getElementById("myLabel").htmlFor = "newValue";
Cobalah sendiri " Pages terkait
Referensi HTML: HTML <label> untuk atribut
label Object