我需要在表格中将按钮文本从mark completed
更改为completed
,以下所选行是我正在使用的代码,但未将值设置为completed
。
$('table :button').click(function(){
$(this).closest('tr').find('button').attr('val' , 'Completed');
});
答案 0 :(得分:2)
没有名为val
的属性。使用text()
方法,如下所示。
$('table :button').click(function(){
$(this).text('Completed');
});
答案 1 :(得分:-1)
尝试直接方法:
$('table :button').click(function(){
$(this).val('Completed');
});