首页 > 代码库 > jquery checkbox radio 标签 选中的3种方法
jquery checkbox radio 标签 选中的3种方法
分类目录: js/jquery
jquery 很灵活,checkbox radio标签选中的方法有很多,在这儿就例举三个常用的方法。
一,测试html
查看复制打印?
- <div style="margin-top:150px;">
- <input type=‘checkbox‘ name=‘test[]‘ class=‘checkbox‘ value=http://www.mamicode.com/‘checkbox1‘>checkbox1
- <input type=‘checkbox‘ name=‘test[]‘ class=‘checkbox‘ value=http://www.mamicode.com/‘checkbox2‘>checkbox2
- <input type=‘checkbox‘ name=‘test[]‘ class=‘checkbox‘ value=http://www.mamicode.com/‘checkbox3‘>checkbox3
- </div>
- <div style="margin-top:50px;">
- <input type="radio" name="test1" value = "radio1" class=‘radio‘ >radio1
- <input type="radio" name="test1" value = "radio2" class=‘radio‘ >radio2
- <input type="radio" name="test1" value = "radio3" class=‘radio‘ >radio3
- </div>
二,checkbok,radio选中
方法1,
查看复制打印?
- //这二个方法属于一类
- $(‘.checkbox:checked‘);
- $(‘input[type^=checkbox]:checked‘);
方法2,
查看复制打印?
- $(‘.checkbox‘).filter(‘:checked‘);
方法3
查看复制打印?
- $(‘.checkbox‘).each(function(){
- if($(this).is(":checked")){
- alert($(this).val()+": is checked");
- }else{
- alert($(this).val()+": is not checked");
- }
- })
将上面的.checkbox换成.radio,就可以判断radio标签的选中了
jquery checkbox radio 标签 选中的3种方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。