2014-07-01|1660阅|作者:Kiritoseven|举报 摘要:选中列表中的一行数据,通过读取复选框的状态实现自动勾选
function rowSelected(){
//移除已选中
$("#leftTable tr").removeClass("selectedbg");
//选中一行
$(this).addClass("selectedbg");
//获取选中行的id
var currentRowId = $(this).attr("id");
$("#topPageDiv").load("${ctx}/ref/asd.action?brrId="+currentRowId, function(){
//判断复选框的状态值
if("true"==$("#active").val()){
$("input[name='active']").attr("checked", true);
}else{
$("input[name='active']").attr("checked", false);
}
});
}