Jquery中的prop()方法 全选或全不选

 注意: prop()在高版本才会有效, 低版本用attr();
 $(function(){
// 元素checkbox
var aChecked = $('.checkGoods');
// 全选
var oAllSelected = $('#checkAll'); oAllSelected.click(function() {
var $this = $(this); if( $this.prop('checked') ) {
aChecked.each(function() {
$(this).prop('checked', true);
});
} else {
aChecked.each(function() {
$(this).prop('checked', false);
});
}
}); })

        aChecked.each(function() {
$(this).prop('checked', !$(this).prop('checked'));
});

  

  

上一篇:Apache Ignite 学习笔记(二): Ignite Java Thin Client


下一篇:Use the PDFs below or the HTML contents to the left to install and configure P6 EPPM and its additional components.