次のように a の値を設定したいと思います<label>
。
<label for="idname">Value here...</label>
ジャバスクリプトで。属性に対して、私はすでにこれを行っていfor
ます:
element.setAttribute("for", "idname");
element.setValue()
ラベルの値を設定するために使用できるものはありますか? ありがとう!
次のように a の値を設定したいと思います<label>
。
<label for="idname">Value here...</label>
ジャバスクリプトで。属性に対して、私はすでにこれを行っていfor
ます:
element.setAttribute("for", "idname");
element.setValue()
ラベルの値を設定するために使用できるものはありますか? ありがとう!
<label for="idname">Value here...</label>
<script>
document.getElementsByTagName('label')[0].innerHTML='new value';
</script>
A label has no value. If you want to set the text, you may use
element.innerHTML = "some text";