主题: items和aferChange混用问题,字数限定闻提,急急很急 |
作者: 无语, 发布日期: 2014-01-03 17:05:09, 浏览数: 2054 |
请问kindEditor编辑器小插件调用如下: <script language="javascript">var editor; KindEditor.ready(function(K) { editor = K.create('#description', { resizeType : 1, allowPreviewEmoticons : false, allowImageUpload : false, items : [ 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 'insertunorderedlist','emoticons', 'image'] }); }); </script> 如何把一下代码: afterChange : function() { K('.word_count1').html(this.count()); K('.word_count2').html(this.count('text')); } 嵌套进去而不影响程序调用 |