jquery table表格 获取选中的某一行和某一列的值

table class="table table-hover" id="test123">

选择
驾校名称
合作驾校名称
申请时间
申请状态
操作



中大驾校
潇湘驾校
2016-04-15 14:40:20
未处理
修改申请状态



中大驾校
潇湘驾校
2016-04-15 14:40:20
未处理
修改申请状态


修改申请状态
未处理

已处理

无效



 

具体的操作过程

$("#test123 tr").click(function(){
// 获取点中行的第五列
// alert($(this).children().eq(4).html());
$this = $(this);
$(".br_confirm").click(function(){
// 弹框中选中的值
var $Selectvalue = $("input[name='br_radiobutton']:checked").val();
$this.children().eq(4).html($Selectvalue);

$("#br_mask").css("display","none");
$("#br_userExcel").css("display","none");
$("#br_applicationStatus").css("display","none");
})
});

 

你可能感兴趣的:(html5)