全选

<script type="text/javascript">
window.onload=function(){
var oP1=document.getElementById('ip1');
var oP2=document.getElementById('ip2');
var oP3=document.getElementById('ip3');
var oP=document.getElementsByTagName('input')
oP1.onclick=function(){
for(var i=0;i<oP.length;i++){
oP[i].checked=true;
}
}
oP2.onclick=function(){
for(var i=0;i<oP.length;i++){
oP[i].checked=false;
}
}
oP3.onclick=function(){
for(var i=0;i<oP.length;i++){
oP[i].checked=!oP[i].checked;
}
}
}
</script>

 

<script type="text/javascript">
$(function(){
$('#ip1').click(function(){
$('input:checkbox').attr('checked',true);
})
$('#ip2').click(function(){
$('input:checkbox').attr('checked',false);
})
$('#ip3').click(function(){
$('input:checkbox').each(function(){
$(this).attr('checked',!$(this).attr('checked'));
})
})
})
</script>

posted on 2015-08-26 11:20  奋斗的luy  阅读(96)  评论(0编辑  收藏  举报

导航