在我的代码中,我有以下内容:
$(document).ready(function(){
$("input#Addmore").click(function(){
$('div#add_div').append("<a class='remove' href='#'>X</a>");
});
});
此代码单击添加更多按钮,我想通过 jquery 单击“X”删除上述添加代码的父 div。为此,我正在使用此代码
$("a.remove").click(function(){
$(this).closest("div").remove();
});
但是代码不起作用,因为 jQuery 没有获取附加锚代码。谁能告诉我解决方案?