我正在生成一个表。具有用于选择状态行的复选框列的表具有名为rows.Each的列。单击页面上的按钮时,我想使用jquery将status列更新为'working‘。
我使用jquery在按钮单击事件中使用jquery获取所选行的id
$('#BttnChangeStatus').click(function () {
var selectedCalls = [];
$('#result_table :checked').each(function () {
selectedCalls.push($(this).val()); //the row id and value of check box are same
//need to update status to working'.. how can i do this
});
如何更新状态栏??
发布于 2011-03-14 13:01:25
如果状态列没有任何标识符,则
$('#result_table :checked').parents('tr').children('td:eq(x)').text("working...");
其中x是表中的状态列数。
发布于 2011-03-14 13:02:04
尝尝这个
$('#rowid').find('#columnid').text('working') or
$(this).find('#columnid').text('working')
发布于 2011-03-14 13:02:19
对您的标记一无所知..
$('#result_table :checked').each(function () {
selectedCalls.push($(this).val()); //the row id and value of check box are same
$("#" + $(this).val()).find("td:eq(3)").text("Working...");
});
其中$("#" + $(this).val())
将为您提供当前行。td:eq(3)
将得到索引为3的td单元格,从那里您应该可以简单地更改文本。
.上的代码示例
https://stackoverflow.com/questions/5298770
复制