$("div.test").on("click", ".ibtnDel", function (event) {
$(this).closest("div.test"+idtable).remove();
counter -= 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
});