jquery全选 不全选

<input type="checkbox" id="check">点击

<input type="checkbox" class="check">

<input type="checkbox" class="check">

<input type="checkbox" class="check">

<input type="checkbox" class="check">

<script>

  $("#check").click(function(){

  $('.check').prop("checked",this.checked);

})

</script>

上一篇:Highcharts 时间序列,可缩放的图表


下一篇:jQuery prop() 方法