首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jqery 反选,全选,撤销全选

2012-10-09 
jqery 反选,全选,取消全选input typecheckbox namefiled valueprovince省份input typecheck

jqery 反选,全选,取消全选

<input type="checkbox" name="filed" value="province">省份
<input type="checkbox" name="filed" value="unit">单位名称
<input type="checkbox" name="filed" value="sex">性别
<input type="checkbox" name="filed" value="name">姓名
<input type="checkbox" name="filed" value="duty">职务

?

<input type="checkbox" name="cball" id="cball"/> 全选/取消
<input type="checkbox" name="cbfan" id="cbfan"/> 反选

?

?

$("#cball").click(function(){
??$("input[name='filed']").attr("checked",$(this).attr("checked"));
?});
?
?$("#cbfan").click(function(){
??? ?$("[name='filed']").each(function(){
??????? ?if($(this).attr("checked"))
??????????? ?$(this).removeAttr("checked");?
?????????? ?else
???????????? ?$(this).attr("checked",'true');
??????? });
??? });

热点排行