主题: 4.0.4版本如何给editor赋值? |
作者: zsspri, 发布日期: 2011-12-29 11:08:13, 浏览数: 3611 |
如题
|
作者: zsspri, 发布日期: 2011-12-29 11:15:18 |
<script>
//想在这里把text的内容赋值给editor,不知道怎么写了 <textarea name="replyContent" id="replyContent" style="width:700px;height:200px;" ></textarea><br/>
|
回复 |
作者: zsspri, 发布日期: 2011-12-29 11:29:56 |
我试着按下面的来写,但不起作用 var editor; KindEditor.ready(function(K) { editor = K.create('textarea[name="replyContent"]', { allowFileManager : true }); editor.text('<h3>Hello KindEditor</h3>'); });
请指教,谢谢 |
回复 |
作者: 冰水咖啡[30], 发布日期: 2011-12-31 15:24:10 |
官方示例中
editor.html('<h3>Hello KindEditor</h3>'); |
回复 |