我想在一次回复中获得多个返回值。
$('#Tbl :checkbox:checked').closest('tr').each(function() {
checkedRows.push(
$(this).find('td:gt(0)').map(function() {
return $(this).text(),$(this).find(".inputDate").val(),$(this).find('select').val();
}).get()
);
});
答案 0 :(得分:0)
使用下面的对象文字表示法:
return {
prop1: $(this).text(),
prop2: $(this).find(".inputDate").val(),
prop3: $(this).find('select').val()
}