我单击复选框,然后我应该查看行上的所有复选框,选中与否(3 个复选框)。
当我点击复选框时update_order_status(this);
function update_order_status(e){
var order_id = $(e).parents('tr').find('.order_id').html();
var status_id = $(e).parents('tr').find('.status_id').val();
$(e).parents('tr').find('input').each(function(i){
//watch all input on the page, but not row
});
}