怎么动态绑定一组input type="radio"是否选中
发布网友
发布时间:2024-10-17 22:52
我来回答
共1个回答
热心网友
时间:2024-12-04 16:42
radio的代码如下:
<label>
<input type="radio" name="radiobutton" value="radiobutton" onclick="javascript:this.checked=false" />
选择一</label>
<label>
<input type="radio" name="radiobutton" value="radiobutton" onclick="javascript:this.checked=false" />
选择二</label>
<label>
<input type="radio" name="radiobutton" value="radiobutton" onclick="javascript:this.checked=false" />
选择三
</label>
此代码我放在一下repeater里面,repeater正确绑定取得了数据,然后我想根据取得的数据确定选择哪一个