动态添加行

时间:2019-02-11 08:14:08

标签: javascript php jquery

$("div.test").on("click", ".ibtnDel", function (event) {
    $(this).closest("div.test"+idtable).remove();       
    counter -= 1
});

有什么问题吗?

1 个答案:

答案 0 :(得分:0)

未单击按钮而不是单击div,这就是代码不起作用的原因。

$(".ibtnDel").on("click", function (event) {
    // remove the div that has this button been clicked
    $('div.test').has(this).remove(); 
    counter -= 1
});