主题: KindEditor 4.0 简单模式里。上边只有插入图片,怎么添上传本地图片的功能。用的asp
作者: aa_a, 发布日期: 2011-09-24 16:29:06, 浏览数: 6527

<link rel="stylesheet" href="edit/themes/default/default.css" />
<script charset="utf-8" src="edit/kindeditor.js"></script>
<script charset="utf-8" src="edit/lang/zh_CN.js"></script>

<script >

KindEditor.ready(function(K) {
 K.create('textarea[name="Author"]', {
  resizeType : 1,
  allowPreviewEmoticons : false,
  allowImageUpload : false,
  items : [
    'fontsize', '|', 'textcolor', 'bgcolor', 'bold', 'italic', 'underline',
   'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
   'insertunorderedlist', '|', 'emoticons', 'image', 'link']  
 });
});
</script>

<textarea name="Author" style="width:500px;height:100px;visibility:hidden;"></textarea>
作者: aa_a, 发布日期: 2011-09-24 17:59:47

搞定了。

把allowImageUpload : false,
改成 allowImageUpload : true,就有了。

 

但是还有一个问题。想在这之内基础上加一个单独上传

 

<input type="text" name="IndexImg" id="IndexImg" size="60" maxlength="100" /><input type="button" value="独立上传" id="UpLoadBtn" />

 

回复
发表新帖 发表回复