js给kindeditor添加值
Posted 无名小妖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js给kindeditor添加值相关的知识,希望对你有一定的参考价值。
需求:在点击回复按钮时,在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);
});
以上是关于js给kindeditor添加值的主要内容,如果未能解决你的问题,请参考以下文章