<div class="chatbox-window">
<div class="chatbox-title">
<div class="chatbox-username"></div><div class="chatbox-close"><span class="chatbox-close-button"></span></div>
</div>
<div class="chatbox-content"><div class="chatbox-msg"></div></div>
<div id="chatbox-posting"></div>
</div>
$(".chatbox-close-button").click(function(){
$(this).parent(".chatbox-close").parent(".chatbox-title").parent(".chatbox-window").remove();
});
下面,我使用:
$(this).parent(".chatbox-close").parent(".chatbox-title").parent(".chatbox-window") to get the ".chatbox-window"
但:
有没有更短的方法来获得.chatbox-window
附言。在不更改HTML
代码的情况下。