Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

label

label
型: 文字列型
要素上に表示するlabel。 省略された場合、テキストは表示されない。

参考

JavaScript のサンプル

<label value="Whaw" id="the-big-label" command="the-big-button"/>
<button id="the-big-button" label="Click me"
	oncommand="alert(document.getElementById('the-big-label').value)"/>

<label id="myLabel" value="My label"/>
<button label="Click me" 
	oncommand="document.getElementById('myLabel').setAttribute('value','Value changed');" />

<checkbox label="my Checkbox" id="myCheckboX"/>
<button label="Another click" 
	oncommand="document.getElementById('myCheckboX').setAttribute('label','Still not checked');"/>
<button label="Show label of checkbox" 
	oncommand="alert( document.getElementById('myCheckboX').getAttribute('label') )"/>

ドキュメントのタグと貢献者

 このページの貢献者: Marsf, Mgjbot, Okome
 最終更新者: Marsf,