zoukankan      html  css  js  c++  java
  • KindEditor配置和使用

      |字号 订阅

     
     

    很长时间没有写学习心得了,整理了一下思路,简单写一下吧。

    1下载kindeditor包,目前最新版本是kindeditor-3.5.5。下载地址:http://www.kindsoft.net/

    2.解压之后,解压目录kindeditor如下图所示。

    KindEditor配置和使用 - 落羽 - 落羽

     3.开始瘦身,其实调用kindeditor并不需要那么多文件,只要保留目录:plugins、skins和文件kindeditor3.5.5.js即可。其余的文件均可删除。

    4,把瘦身后的目录kindeditor拷贝到Web工程的WebRoot下面,然后打开kindeditor3.5.5.js,设置skinsPath和pluginsPath两个属性,值分别为/kindeditor/skins,/kindeditor/plugins。

    5 页面调用

    (1)首先引入kindeditor3.5.5.js文件

      (2) 在要调用编辑器的文件中建立textArea标签,如:<textarea id="editor" name="editor" style="502px;height:197px;visibility:hidden;" ></textarea>

      (3) 调用KE对象的show()方法。如:KE.show({     id : 'editor',     resizeMode : 1,     allowPreviewEmoticons : false,     allowUpload : false,     items : [     'source', '|', 'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold', 'italic', 'underline',     'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',     'insertunorderedlist', '|', 'emoticons', 'image', 'link']    });

    注意:这里的id属性值与<textarea>标签的id属性值相同。

    (4)大功告成,访问你的页面吧!

  • 相关阅读:
    应用提交到安卓应用市场需要注意哪些地方?
    chromedriver 下载
    缺陷与测试报告
    需求分析与测试计划、方案
    【转】使用信号监控 Django 模型对象字段值的变化
    缓存技术
    Tomcat 代码方式启动
    枚举类型 (币种例子)
    SpringMVC 常用注解
    HttpClient 教程
  • 原文地址:https://www.cnblogs.com/seeking/p/3286418.html
Copyright © 2011-2022 走看看