tutorial pengembangan web terbaru
 

Label htmlFor Properti

Label Referensi Obyek label Object

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

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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 Referensi Obyek label Object