亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

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

$(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)文章

最新評論