为什么要全部点击?这些实际上是您要标记为“已检查”的复选框吗?
//If checkboxes then try
$('#select'+array[i]).prop('checked', true);
如果这些是真正的按钮,那么您为什么不手动初始化它们将初始化的“onClick”功能?
for(var i = 0; i < array.length; i++) {
//call the onClick function yourself here
}
请详细说明
编辑:
function selectAllValues() {
for(var i = 0; i < array.length; i++) {
$('#select'+array[i]).prop('checked', true);
//code to create tables
//loop through tables
$('tableselector').each(function(key,value){
//check the checkboxes within the tables
$(this).find('input[type="checkbox"]').prop('checked', true);
});
}
};