求助一个jquery控制全选全不选的问题
1个回答
2016-11-10
展开全部
控件代码:
<input type="checkbox" id="d1" checked="checked"/>all
<input type="checkbox" />1
<input type="checkbox" />2
<input type="checkbox" />3
<input type="checkbox" />4
jQuery代码:
$(function(){
$('#d1').click(function(){
$('input').attr('checked',this.checked);
});
});
这样就能实现全选和全不选了
<input type="checkbox" id="d1" checked="checked"/>all
<input type="checkbox" />1
<input type="checkbox" />2
<input type="checkbox" />3
<input type="checkbox" />4
jQuery代码:
$(function(){
$('#d1').click(function(){
$('input').attr('checked',this.checked);
});
});
这样就能实现全选和全不选了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询