JS:
$(function(){
$(".remove").click(function(){
$("<need the right selector>").hide();
});
});
HTML:
<div class="tag-collection">
<div class="key">PULMONARY_EMBOLISM <span class="remove">✘</span></div>
</div>
我会用上面的 jQuery 代码来删除整个 div tag-collection
。但是,我将tag-collection
在页面上有很多 div,并且我想确保当有人单击删除按钮时,它只会删除tag-collection
包含删除按钮的 div。