主题: Web项目中Kinfeditor控件不显示??急!急!急! |
作者: KindVIP, 发布日期: 2014-05-28 16:44:15, 浏览数: 1813 |
kindeditor4.1.10 在web项目的WebRoot根目录下; Web页面内容(JS代码)如下: <!-- 引入Kindeditor编辑器控件 --> <script type="text/javascript" charset="utf-8" src="../../kindeditor4.1.10/kindeditor.js"></script> <script type="text/javascript" charset="utf-8" src="../../kindeditor4.1.10/lang/zh_CN.js"></script> <script type="text/javascript" charset="utf-8"> KindEditor.ready(function(K) { window.editor = K.create('#amtContent', { resizeType : 1 , allowPreviewEmoticons : false , allowImageUpload : false , cssPath : ['kindeditor4.1.10/plugins/code/prettify.css', 'kindeditor4.1.10/examples/index.css'] , items : [ 'source', 'fullscreen', 'removeformat', 'preview', '|', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'strikethrough', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 'insertunorderedlist', '|', 'cut', 'copy', 'paste', 'plainpaste', 'wordpaste', '|', 'selectall', 'emoticons', 'image', 'multiimage', 'insertfile', 'link', 'unlink', 'table', 'hr', 'code' ] }); }); </script>HTML代码如下:
<textarea id="amtContent" name="amtContent" rows="15" cols="80">测试</textarea>问题是运行以后,不显示Kindeditor控件,是什么原因??
|