我有一个带有回复选项的评论列表。单击回复按钮时,评论下方应出现一个表单。
HTML:
<div id="" class="comment">
<div class="comment-message">Message
<div class="information">
<a id="" class="comment-reply" href="/comments/reply/"> Reply </a>
</div>
</div>
</div>
<div class="test">Test</div>
CSS:
.test{display:none;}
jQuery:
$('.comment-reply').live("click", function(e) {
e.preventDefault();
$this = $(this);
$this.closest('.test').toggle();
});
我尝试过使用以下内容:
$this.closest('.test').toggle();
对此的任何帮助将不胜感激,谢谢。