// aaa 是表格id,
$('#aaa').on( 'focus', 'input[type="checkbox"]', function (event) {
// 判断复选框是否选中
// 注意:temp点击选中复选框显示false,取消选中显示true
var temp = $(this).parents('tr').children().first().children().prop("checked");
// 拿到性别
var sex = $(this).parents('tr').children().first().next().text()
// 点击
$(this).prop("checked",temp)
)}