<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
コードを変更しない場合。