主题: editor 对象问题 |
作者: cooc123, 发布日期: 2012-02-08 11:00:48, 浏览数: 2537 |
function showEdit(){ var editor; KindEditor.ready(function(K) { editor = K.create('textarea[name="content"]', { allowPreviewEmoticons : false, allowImageUpload : false, allowFlashUpload : false, newlineTag : 'br', pasteType : 1, items : [ 'source','plainpaste', 'wordpaste' , '|','fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'table' , '|', 'emoticons', 'image', 'flash', 'link' , 'map' , 'clearhtml', 'about'] }); }); return editor; }
然后我在页面用 <script>var e = showEdit();e.html('test');</script> 编辑器可以加装出来 为什么e.html('test'); 没用呢 |