您好,我有一些看起来像这样的 HTML,
<div id="music_interests">
<ul class="interests">
<li >
<div class="interest inline">
<img src=""/>
<div class="interest_popup">
1 users have this interest.
<a href="http://localhost/love/index.php/my_profile/remove_interest/34" class="button red upper rounded_5 small remove">Remove interest</a> </div>
</div>
</li>
</ul>
当用户单击删除按钮时,我需要选择父 div(在本例中为 music_interests)。我该怎么做呢?
我尝试过以下操作,
$(this).parent().parent().parent().parent()
但有更优雅的方式吗?
更复杂的是,我实际上不会在应用程序中没有父母 ID,因为删除按钮出现在页面上的 4 或 5 个不同区域。