jQuery(function($){
//删除
$('input[name=del]').click(function(){
if( !confirm('确认删除吗?') ) return false;
if( $('input[name="wish_ids[]"]:checked').size()==0 ){
alert('请选择要删除的项');
return false;
}
});
//全选
$('input[name="selectAll"]').click(function(){
var checked = this.checked;
$('input[name="wish_ids[]"]').each(function(){
this.checked = checked;
});
});
});