欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery checkbox實(shí)現(xiàn)單選小例

 更新時(shí)間:2013年11月27日 15:48:46   作者:  
checkbox是復(fù)選框如何將其變?yōu)閱芜x呢?下面有個(gè)不錯(cuò)的示例,感興趣的朋友可以參考下
復(fù)制代碼 代碼如下:

$(function(){
$(':checkbox[name=flag]').each(function(){
$(this).click(function(){
if($(this).attr('checked')){
$(':checkbox[name=flag]').removeAttr('checked');
$(this).attr('checked','checked');
}
});
});

});

<input name="flag" id="agree" type="checkbox" checked="checked" value="0"/> 同意
<input name="flag" id="reject" type="checkbox" value="1" /> 不同意

相關(guān)文章

最新評論