JQuery判断checkbox是否选中及其它复选框操作方法合集_jquery
jquery判断checked的三种方法:
.attr('checked): //看版本1.6+返回:”checked”或”undefined” ;1.5-返回:true或false
.prop('checked'): //16+:true/false
.is(':checked'): //所有版本:true/false//别忘记冒号哦
jquery赋值checked的几种写法:
所有的jquery版本都可以这样赋值:
// $("#cb1").attr("checked","checked");
// $("#cb1").attr("checked",true);
jquery1.6+:prop的4种赋值:
// $("#cb1″).prop("checked",true);//很简单就不说了哦
// $("#cb1″).prop({checked:true}); //map键值对
// $("#cb1″).prop("checked",function(){
return true;//函数返回true或false
});
//记得还有这种哦:$("#cb1″).prop("checked","checked");
二、jquery如何判断checkbox(复选框)是否被选中
谁都知道 在html 如果一个复选框被选中 是 checked="checked"。
但是我们如果用jquery alert($("#id").attr("checked")) 会提示您是true而不是checked
所以很多朋友判断 if($("#id").attr("checked")=="true") 这个是错误的,其实应该是 if($("#id").attr("checked")==true)
例子里面包括了一下几个功能。
代码
">http://www.cnjquery.com/demo/jquery.js">>
三、 jquery判断checkbox是否被选中
在html的checkbox里,选中的话会有属性checked="checked"。
如果用一个checkbox被选中,alert这个checkbox的属性"checked"的值alert($"#xxx".attr("checked")),会打印出"true"",而不是checked"!
如果没被选中,打印出的是"undefined"。
不要尝试去做这样的判断:if($"#xxx".attr("checked")=="true")或者if($"#xxx".attr("checked")=='checked')
应该是if($("#checkbox1").attr("checked")==true)
全选和全不选函数
function checkAll(){
if($("#checkbox1").attr("checked")==true){
$("input[name='xh']").each(function() {
$(this).attr('checked',true);
});
}else {
$("input[name='xh']").each(function() {
$(this).attr('checked',false);
});
}
}
四、JQuery 判断checkbox是否选中,checkbox全选,获取checkbox选中值
JQuery是一个非常容易上手的框架,但是有很多东西需要我们深入学习的。
判断checkbox是否被选中网上有选多种写法,这里有一种方法,个人觉得
比较方便。
因为比较简单,没什么技术含量,直接代码
ttp://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml">
上一篇: Spring生命周期和容器扩展使用详解
推荐阅读
-
jQuery判断checkbox(复选框)是否被选中以及全选、反选实现代码
-
jQuery判断checkbox(复选框)是否被选中以及全选、反选实现代码
-
Jquery判断radio、selelct、checkbox是否选中及获取选中值方法总结_jquery
-
jquery判断checkbox(复选框)是否被选中的代码_jquery
-
jquery判断checkbox(复选框)是否被选中的代码_jquery
-
Jquery判断radio、selelct、checkbox是否选中及获取选中值方法总结_jquery
-
Jquery实际应用,判断radio,selelct,checkbox是否选中及选中的值
-
jquery如何判断checkbox(复选框)是否被选中_html/css_WEB-ITnose
-
jQuery判断checkbox(复选框)是否被选中以及全选、反选实现代码
-
JQuery判断checkbox是否选中及其它复选框操作方法合集_jquery