微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jquery的checkbox,radio,select等方法小结

1、checkBox日常jquery操作。 现在我们以下面的html为例进行checkBox的操作。

rush:xhtml;"> 全选 项1 项2 项3 项4

全选和全部选代码

rush:js;">

checkBox属性

rush:js;"> 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为例:

rush:xhtml;"> 1 2 3 4

radio操作如下:

rush:js;"> $("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为例来说明:

rush:xhtml;">

看select的如下属性

rush:js;"> $("#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").attr("index"); // 5.获取Select最大的索引值,或者:$("#select_id :last").get(0).index; /** * 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(""); // 1.为Select追加一个Option(下拉项) $("#select_id").prepend(""); // 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_id").get(0).selectedindex=index;//index为索引值

//设置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有了一定的了解了吧,温故而知新,用多了就会变的熟练起来,即使有时候忘记了,也可以来翻一翻!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐