我正在尝试获取已检查的复选框的表行的id值,但由于某种原因。我没有返回当前脚本的对象数组:
console.log(array_checks);
返回我需要的东西:一个对象数组,使脚本运行良好。但是如果我取消注释.closest('tr').attr('id')
,它不会再返回对象数组,它会返回一个带有第一个已检查表行id的字符串。我错在哪里
HTML
<tr id="row_132" class="even">
<td>
<input id="52" class="checkbox-dash" type="checkbox" value="52" name="delete-dash[]">
</td>
</tr>
<tr id="row_91" class="even">
<td>
<input id="54" class="checkbox-dash" type="checkbox" value="54" name="delete-dash[]">
</td>
</tr>
Jquery的
var array_checks = $('.checkbox-dash:checked')/*.closest('tr').attr('id')*/;
console.log(array_checks);
if (array_checks.length) {
// Getting values of the table row id of checked checkboxes
var array_values = array_checks.map(function(){
return this.value;
}).get();
} else {
var array_values = 0;
$('#message').html('Please select at least one row in order to delete.').show(700);
}
$.ajax({
type: 'post',
url: '../lib/ajax.html',
data: {
action: 'delete_sites_history',
user_id: user_id,
array_values: array_values
},
beforeSend: function() {
$("#result").html('Loading...');
},
complete: function(data) {
$("#result").html('');
$.each(array_values, function(index, rows) {
console.log(rows);
$('#row_'+rows).fadeOut(1000);
});
},
error: function() {
$("#result").html('There was an error');
}
});
预期输出
console.log(array_checks);
- 需要返回对象数组(row_132,row_91)
Object[
tr#row_132.checkbox-dash attribute value = "132",
tr#row_91.checkbox-dash attribute value = "91"
]
答案 0 :(得分:1)
您可以使用has:
选择器:
$('tr:has(.checkbox-dash:checked)')
要获取所有ID,您不能使用attr
,因为它只返回集合中第一个节点的值,但您可以执行以下操作:
var ids = $('tr:has(.checkbox-dash:checked)').map(function () {
return this.id;
}).get();