如何修改checkbox选中的值

如题所述

1、checkbox日常jquery操作。
现在我们以下面的html为例进行checkbox的操作。
<input id="checkAll" type="checkbox" />全选
<input name="subBox" type="checkbox" />项1
<input name="subBox" type="checkbox" />项2
<input name="subBox" type="checkbox" />项3
<input name="subBox" type="checkbox" />项4

全选和全部选代码:
<script type="text/javascript">
$(function() {
$("#checkAll").click(function() {
$('input[name="subBox"]').attr("checked",this.checked);
});
var $subBox = $("input[name='subBox']");
$subBox.click(function(){
$("#checkAll").attr("checked",$subBox.length == $("input[name='subBox']:checked").length ? true : false);
});
});
</script>

checkbox属性:
var val = $("#checkAll").val();// 获取指定id的复选框的值
var isSelected = $("#checkAll").attr("checked"); // 判断id=checkAll的那个复选框是否处于选中状态,选中则isSelected=true;否则isSelected=false;
$("#checkAll").attr("checked", true);// or
$("#checkAll").attr("checked", 'checked');// 将id=checkbox_id3的那个复选框选中,即打勾
$("#checkAll").attr("checked", false);// or
$("#checkAll").attr("checked", '');// 将id=checkbox_id3的那个复选框不选中,即不打勾
$("input[name=subBox][value=3]").attr("checked", 'checked');// 将name=subBox, value=3 的那个复选框选中,即打勾
$("input[name=subBox][value=3]").attr("checked", '');// 将name=subBox, value=3 的那个复选框不选中,即不打勾
$("input[type=checkbox][name=subBox]").get(2).checked = true;// 设置index = 2,即第三项为选中状态
$("input[type=checkbox]:checked").each(function(){ //由于复选框一般选中的是多个,所以可以循环输出选中的值
alert($(this).val());
});

2、radio的jquery日常操作及属性
我们仍然以下面的html为例:
<input type="radio" name="radio" id="radio1" value="1" />1
<input type="radio" name="radio" id="radio2" value="2" />2
<input type="radio" name="radio" id="radio3" value="3" />3
<input type="radio" name="radio" id="radio4" value="4" />4

radio操作如下:
$("input[name=radio]:eq(0)").attr("checked",'checked'); //这样就是第一个选中咯。
//jquery中,radio的选中与否和checkbox是一样的。
$("#radio1").attr("checked","checked");
$("#radio1").removeAttr("checked");
$("input[type='radio'][name='radio']:checked").length == 0 ? "没有任何单选框被选中" : "已经有选中";
$('input[type="radio"][name="radio"]:checked').val(); // 获取一组radio被选中项的值
$("input[type='radio'][name='radio'][value='2']").attr("checked", "checked");// 设置value = 2的一项为选中
$("#radio2").attr("checked", "checked"); // 设置id=radio2的一项为选中
$("input[type='radio'][name='radio']").get(1).checked = true; // 设置index = 1,即第二项为当前选中
var isChecked = $("#radio2").attr("checked");// id=radio2的一项处于选中状态则isChecked = true, 否则isChecked = false;
var isChecked = $("input[type='radio'][name='radio'][value='2']").attr("checked");// value=2的一项处于选中状态则isChecked = true, 否则isChecked = false;

3、select下拉框的日常jquery操作
select操作相比checkbox和radio要相对麻烦一些,我们仍然以下面的html为例来说明:
<select name="select" id="select_id" style="width: 100px;">
<option value="1">11</option>
<option value="2">22</option>
<option value="3">33</option>
<option value="4">44</option>
<option value="5">55</option>
<option value="6">66</option>
</select>

看select的如下属性:
$("#select_id").change(function(){ // 1.为Select添加事件,当选择其中一项时触发
//code...
});
var checkValue = $("#select_id").val(); // 2.获取Select选中项的Value
var checkText = $("#select_id :selected").text(); // 3.获取Select选中项的Text
var checkIndex = $("#select_id").attr("selectedIndex"); // 4.获取Select选中项的索引值,或者:$("#select_id").get(0).selectedIndex;
var maxIndex =$("#select_id :last").get(0).index; // 5.获取Select最大的索引值
/**
* jQuery设置Select的选中项
*/
$("#select_id").get(0).selectedIndex = 1; // 1.设置Select索引值为1的项选中
$("#select_id").val(4); // 2.设置Select的Value值为4的项选中
/**
* jQuery添加/删除Select的Option项
*/
$("#select_id").append("<option value='新增'>新增option</option>"); // 1.为Select追加一个Option(下拉项)
$("#select_id").prepend("<option value='请选择'>请选择</option>"); // 2.为Select插入一个Option(第一个位置)
$("#select_id").get(0).remove(1); // 3.删除Select中索引值为1的Option(第二个)
$("#select_id :last").remove(); // 4.删除Select中索引值最大Option(最后一个)
$("#select_id [value='3']").remove(); // 5.删除Select中Value='3'的Option
$("#select_id").empty();

$("#select_id").find("option:selected").text(); // 获取select 选中的 text :

$("#select_id").val(); // 获取select选中的 value:

$("#select_id").get(0).selectedIndex; // 获取select选中的索引:

//设置select 选中的value:
$("#select_id").attr("value","Normal");
$("#select_id").val("Normal");
$("#select_id").get(0).value = value;

//设置select 选中的text,通常可以在select回填中使用
var numId=33 //设置text==33的选中!
var count=$("#select_id option").length;
for(var i=0;i<count;i++)
{ if($("#select_id").get(0).options[i].text == numId)
{
$("#select_id").get(0).options[i].selected = true;
break;
}
}

通过上面的总结,应该对jquery的checkbox,radio和select有了一定的了解了吧,温故而知新,用多了就会变的熟练起来,即使有时候忘记了,也可以来翻一翻!
温馨提示:内容为网友见解,仅供参考
无其他回答

JS 怎么控制 checkbox 选中
方法\/步骤 1) 通过js的元素选择器选择对应的元素DOM对象,如通过通过元素ID方式获:var el = document.getElementById('元素ID')2) 获取到DOM对象后,可以通过设置该对象的checked属性来修改其选中状态:\/\/ 设置元素为选中状态el.checked = true;\/\/ 设置元素为未选中状态el.checked = false;注意事项...

checkbox的属性值怎么更改?
方法一: 默认zoom是100%,根据自己的需要,更改缩放倍数即可。方法二: 记住,要同时设置 height 与 width。推荐使用 方法二。

jquery怎样将check值改变
需要勾选checkbox,只需要将checkbox的checked属性设置为“checked”即可

excel复选框怎么设置(checkbox复选框使用教程)
添加完成后,用户可以修改复选框的显示内容,如将其名称更改为“确认”。此修改通过“设计模式”下的属性对话框完成,只需调整“caption”属性值即可。复选框控件的实际应用,通常涉及到与工作表单元格值的关联。在私有模块中,通过以下代码实现:`Private Sub CheckBox1_Click() If CheckBox1.Value = ...

如何根据后台传来的数据设置jsp页面中的checkbox的选中状态_百度...
如果后台传过来的是checkbox的值的话,那么可以用jquery的val()方法来设置值,比如:var vals = ['val1','val2'];\/\/后台传来的checkbox的值放入数组中$('input:checkbox').val(vals);\/\/设置checkbox的value值

jsp中的checkbox怎么将选中的值传到后台?
前台代码应该是 苹果 香蕉 橘子 后台获取代码是 response.setCharacterEncoding("UTF-8");request.setCharacterEncoding("UTF-8");String [] shuigou=request.getParameterValues("checkboxname");for (int i = 0; i < shuigou.length; i++) { String shuiguoname=shuigou[i];System.out.println...

checkbox 选中事件
a370716024的答案目测一定报错,其次修正代码后会提示所有复选框值,checkbox是有选中属性的,for加if可以完美实现。

控制多选框(input[type=checkbox])选中状态
这时渲染出的页面中,这个 $test 会默认被选中。并且在console中修改(删除或添加)这个值,checkbox的选中状态也会随之改变。于是乎很多人就以为,只要为checkbox添加上checked属性就可以控制选中状态。但这是错误的!为什么是错误的呢? 因为只要你在项目中,通过任意方式修改过该checkbox的选中状态(可以是...

其checked属性是怎样的呢?
当用户通过鼠标单击操作触发CheckBox的Click事件时,系统首先会判断选项的Value值是否发生了改变。如果Value值改变,意味着用户进行了选中或取消选中的操作,系统会根据当前的checked属性值来确定是否执行后续的逻辑操作。在实际开发中,开发者可以通过对CheckBox的checked属性进行动态设置,来控制选项的选中状态。

jquery 设置 checkbox选择行的input 为不可以编辑状态
1、首先新建一个html文件,命名为test.html。2、在test.html文件内,在p标签内,使用input标签创建一个checkbox选项和一个文本框,并且文本框设置默认值。3、在test.html文件内,给每一个checkbox类型input元素设置name属性,统一设置为ck,主要用于下面通过该name获得input对象。4、在test.html文件内,...

相似回答