需求:在点击回复按钮时,在kindeditor中添加被回复的用户昵称 html:<textarea name="content" id="mycontent" style="width: 100%;height:200px;visibility:hidden;"></textarea> js:(主要是红色部分)
$("a[name=‘DoReply‘]").click(function(){ var nick = $(this).parent().prev().children("span[class=‘GetNick‘]").text(); KindEditor.html("#mycontent",nick); });
时间: 2024-11-05 16:05:14