如何通过“for”属性更新Prototype中<label>的innerHTML?</label>

时间:2011-06-16 21:33:38

标签: html radio-button label prototypejs innerhtml

我有一个框架生成这个收音机,如何更新标签whithout id但带有“for”属性的“asa”文本?

<input type="radio" value="questao1" id="SimuladoQuestao1">
        <label for="SimuladoQuestao1">asa</label>

谢谢, 塞尔索。

1 个答案:

答案 0 :(得分:6)

Prototype有一个非常强大的选择引擎。这是一种方法:

$$('label[for="SimuladoQuestao1"]').first().update('New label')

请参阅details here