操作後に生成される HTML。
<div class="comments_action_207">
<div class="list_item_comments list_item_comments_207">
<div class="comment_separator">text goes here</div>
</div>
</div>
操作前の HTML
<div class="comments_action_207"></div>
<div class="list_item_comments list_item_comments_207"><div class="comment_separator">text goes here</div></div>
上記の操作を可能にするJavaScriptは
$(function() {
$('.comments_action_207').click(function() {
var num = this.className.split('_').pop();
$('</div>',{'class':'list_item_comments list_item_comments_' + num})
.append('<div class="comment_separator">text goes here</div>')
.appendTo(this);
});
});
上記の JavaScript をテストしたところ、正常に動作しました。しかし、私が理解していないのは、以下のように開始 divタグを渡す必要がない理由です。開始 div タグを渡すと、意図したとおりにコードが機能しません。
$('<div></div>',{'class':'list_item_comments list_item_comments_' + num}).
できれば一行一行説明していただけると分かりやすいかと思います。
ありがとう