我的jtable中有3个字段;姓名,年龄,职业。让我说我选择一个特定的行,我如何获得该行的特定列数据?
例如:
我选择以下行: 第2行:Joe Brown,25岁,老师
我如何获得该行的年龄数据(25)?
由于
PS:我打算删除该行,所以我需要名称来正确查询sql数据库(即时使用jdbc)
答案 0 :(得分:1)
$('#yourTable tr').each(function() {
var age = $(this).find("td").eq(1).html();
alert(age);// for testing purpose
});
您将获得第二行的值(索引从零开始)
答案 1 :(得分:1)
var rowIndex = // the zero based index of the selected row
var age = $('.jtable tbody').children(rowIndex).children('td').eq(1).text(); // return the age