ボタンがクリックされるたびに、複数のボタンをチェックされていない状態に変更するソリューションを探しています。これがdivです
<div id="season" align="center">
<span class="yui-button yui-radio-button yui-button-checked yui-radio-button-checked" id="season">
<span class="first-child">
<button type="button" id="season-button">Spring</button>
</span>
</span>
<span class="yui-button yui-radio-button" id="season">
<span class="first-child">
<button type="button" id="season-button">Summer</button>
</span>
</span>
<span class="yui-button yui-radio-button" id="season">
<span class="first-child">
<button type="button" id="season-button">Fall</button>
</span>
</span>
<span class="yui-button yui-radio-button" id="season">
<span class="first-child">
<button type="button" id="season-button">Winter</button>
</span>
</span>
</div>
次のようにしてボタンにアクセスできます。
var groupName = document.getElementById(id).getElementsByTagName("button")
しかし、私が試してみると
for (i = 0; i < groupName.length; i++) {
groupName[i].set("checked", false);
}
何も起こりません
どんな助けでも大歓迎です!
ありがとう!