我正在创建一系列评论,并回复下面的评论。我使用此代码在评论下方附加新回复。
$(document).on('click', '.sub-reply1-send', function() {
var reply = $('textarea[name=comment-reply]').val();
$('.sub-reply1, .sub-reply1-textarea, .sub-reply1-send').slideUp(250).remove();
$('.answer').append("<div class='comment-sub-reply' style='display:none'>" + reply + "</div>");
$('.comment-sub-reply').slideDown(250);
subreply_visible = false;
});
如果只有一条评论要回复,这很好用,但如果有两条评论,比如评论 1 和评论 2,评论 1 将在评论 2 下生成。回复 Comment1 可以正常工作,但回复 Comment2 会在 Comment1 的最后一个下方生成回复框。
我有什么办法可以使它附加到单击它的评论中?
编辑:从我所拥有的生成的 HTML 标记。
<div id="right-bar" class="flexcroll" style="display: block;">
<div class="question" style="display: block;">
<div class="question-content">What is the significance of this section?</div>
</div>
<div class="answer" style="display: block;">
<div class="question-answer" style="" id="thread1">This is not a test
<img class="reply" src="reply.png" />
</div>
<div class="question-answer" style="" id="thread0">Test
<img class="reply" src="reply.png" />
</div>
<div class="comment-sub-reply" style="">Another Test</div>
<div class="comment-sub-reply" style="">Still underneath Test</div>
<div class="comment-sub-reply" style="">This isn't a test either, but it's appearing under test</div>
<div class="sub-reply1" style="">
<textarea class="sub-reply1-textarea" name="comment-reply" style=""></textarea>
<div class="sub-reply1-send" style=""></div>
</div>
</div>
<div id="comment">
<form name="commentForm">
<textarea type="text" name="comment" id="answer-text-input" align="top" class="flexcroll" style="display: block;"></textarea>
</form>
<div id="button" style="display: block;"></div>
</div>
</div>
JQuery 的其他方面不影响它,只有这个函数创建子注释。到目前为止,唯一的线程 ID 没有做任何事情,但我正试图让这项工作来分隔评论。