我需要选择列出的州(例如印度)下的所有城市。我全选:
<input type="checkbox" class="selectall" /> Select All
然后出现以下错误:
this.elem.prop 不是函数
这是我的代码:
jQuery('.selectall').click(function() {
stop = false;
jQuery(this).closest('div').nextAll().each( function() {
elem = jQuery(this).find('input');
console.log(elem);
if (stop || elem.hasClass('selectall')) {
stop = true;
return;
}
else
elem.prop("checked", true);
});
});