主题: KindEditor的尺寸问题 |
作者: rainerwang, 发布日期: 2014-06-27 10:20:52, 浏览数: 1576 |
请教一下,为什么标红的部分,设置了编辑器的长和宽,页面并没有生效,是不是编辑器有个默认的最小长和宽? ---------------------------------------------------------------------------------------------------- <script> var editor;KindEditor.ready(function(K) { editor = K.create('textarea[name="content"]', { width:'300px', height:'200px', resizeType : 0, allowPreviewEmoticons : false, allowImageUpload : false, items : [ 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 'insertunorderedlist'] }); }); ---------------------------------------------------------------------------------------------------- |