table class="table table-hover" >修改申请状态</a></td>
</tr>
</table>

 

 

 

<div >取消</button></div>
</div>

 

 

 

 


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

 

 

具体的操作过程

$("#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");
})
});
---------------------
作者:丧尸会跳小芭蕾
来源:CSDN
原文:https://blog.csdn.net/qq_26725075/article/details/51182929?utm_source=copy
版权声明:本文为博主原创文章,转载请附上博文链接!

相关文章: