当我单击“红色”类时,我想删除整个 div。我的 JS 是
$('document').ready(function(){
$('.buttons .red').click(function(){
$(this).parent('div').parent('div').remove();
$(this).parent('div').remove();
});
});
这是我的 HTML
<div data-role="collapsible" data-collapsed="false">
<h3> Keep</h3>
<div id= "container">
<a href="categories.html" class="green" data-transition="slide" data-type="horizontal" data-role="button">Tax Deductible</a>
<a href="#" class="red" data-transition="slide" data-type="horizontal" data-role="button">Tax Deductible</a>
<a href="categories.html" class="blue" data-transition="slide" data-type="horizontal" data-role="button">Tax Deductible</a>
</div>
</div>