jQuery设置第一个checkbox 为选中值

1设置第一个checkbox 为选中值
$(‘input:checkbox:first‘).attr("checked",‘checked‘);
或者
$(‘input:checkbox‘).eq(0).attr("checked",‘true‘);

2、设置最后一个checkbox为选中值
$(‘input:radio:last‘).attr(‘checked‘, ‘checked‘);
或者
$(‘input:radio:last‘).attr(‘checked‘, ‘true‘);

3、根据索引值设置任意一个checkbox为选中值
$(‘input:checkbox).eq(索引值).attr(‘checked‘, ‘true‘);索引值=0,1,2....
或者
$(‘input:radio‘).slice(1,2).attr(‘checked‘, ‘true‘);

4、选中多个checkbox同时选中第1个和第2个的checkbox
$(‘input:radio‘).slice(0,2).attr(‘checked‘,‘true‘);

5、根据Value值设置checkbox为选中值
$("input:checkbox[value=‘1‘]").attr(‘checked‘,‘true‘);

参考:http://www.cnblogs.com/hs8888/archive/2016/05/23/5520511.html

时间: 2024-10-19 06:06:40

jQuery设置第一个checkbox 为选中值的相关文章

Jquery获取select,dropdownlist,checkbox下拉列表框的值

jQuery获取 Select选择的Text和Value: 语法解释: 1. $("#select_id").change(function(){//code...});   //为Select添加事件,当选择其中一项 时触发 2. var checkText=$("#select_id").find("option:selected").text();  //获取Select选择的Text 3. var checkValue=$("#

关于 jQuery 1.9 检查 checkbox 是否选中的问题。

关于 jQuery 检查 checkbox 是否选中的问题. 把某个Web网页, 移植到手机网页上面.使用 bootstrap 来处理,画面效果还是可以的. 测试的时候,发现某个 checkbox 好像失去效果了.不管有没有选择中, 后台处理都是按没有选择中的处理. 画面是通过 jQuery 的 Ajax 提交的.在 C# 后台设置了断点, 入口的地方, 检测到,那个参数是没有选中. 然后再去看看 js 的处理.判断逻辑是 var vTest = false;if ($("#chkTest&qu

根据获取的value值,设置radio、checkbox 的选中状态

单选按钮系列操作: 1.获取单选按钮选中的值: $("input[name='zhiFu']:checked").val() 2.根据后台传入的值,显示单选按钮的选中状态: $("input[name='zhiFu'][value='"+data.zhiFu+"']").prop("checked", "checked"); -----------------------------------------

求代码:android listview checkbox 从数据库里读取数据后怎么设置相应的checkbox为选中状态

============问题描述============ 现在有一个android listview 带checkbox,从数据库里调取相应数据后,绑定到listview 上. 那么怎么将listview 里的checkbox的选择状态与在数据库中记录一一对应? 求给出代码. 我在自定义BaseAdapter类中,getView方法中无法实现. ============解决方案1============ 这样 你点击的时候 是不是 会获取一个view  通过这个view 获取你那个 checkb

JQuery设置Radiobutton状态(是否选中)

贴代码:(HTML) <td colspan='4' style="align:left"> <input type="radio" style='width:10px' checked='checked' name="type" value="行政村" />行政村 <input type="radio" style='width:10px' name="type&q

Jquery each 遍历获取checkbox的选中状态

var pList = ""; $("[name='ckdProd']").each(function () { if ($(this).is(':checked')) { pList += $(this).val() + ","; } });

Jquery操作复选框(CheckBox)的取值赋值实现代码

赋值 复选框 CheckBox 遍历 取值 1. 获取单个checkbox选中项(三种写法): $("input:checkbox:checked").val() 或者 $("input:[type='checkbox']:checked").val(); 或者 $("input:[name='ck']:checked").val(); 复制代码 2. 获取多个checkbox选中项: $('input:checkbox').each(funct

JQuery 之 获取 radio选中值,select选中值

以下Jquery代码适query1.4版本以上. Radio 1.获取选中值,三种方法都可以: $('input:radio:checked').val(): $("input[type='radio']:checked").val(); $("input[name='rd']:checked").val(); 2.设置第一个Radio为选中值: $('input:radio:first').attr('checked', 'checked'); 或者 $('inp

Jquery 获取 radio选中值

Radio 1.获取选中值,三种方法都可以: $('input:radio:checked').val(): $("input[type='radio']:checked").val(); $("input[name='rd']:checked").val(); 2.设置第一个Radio为选中值: $('input:radio:first').attr('checked', 'checked'); 或者 $('input:radio:first').attr('ch