2

我在 button.click 事件上动态添加表格行。

如果我使用此代码删除行不起作用。

var count = 1;
$('button[id^="product"]').click(function () {
//adding row to table : WORKING FINE

count++;         
});

$(".del_row").click(function() {
//removing row // NOT WORKING
count--;
});

如果我尝试代码 bwloe。它正在工作,但计数回到 0;和 - 在第二次点击:(

$('button[id^="product"]').click(function () {
//adding row to table : WORKING FINE
count++;
$(".del_row").click(function() {
//removing row 
count--;
});     

});
4

1 回答 1

3
$("#TABLE_ID").on("click", ".del_row", function() {
   //remove row here
   count--;
});
于 2013-01-15T06:50:10.120 回答