给web项目整合富文本编辑器

Posted StephenChowcai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给web项目整合富文本编辑器相关的知识,希望对你有一定的参考价值。

给jsp页面整合富文本编辑器
下载——删除多余的组件——加入到项目中——参照案例来完成整合
步骤:
1. 解压zip文件,将所有文件复制到Tomcat的webapps/kindeditor目录下。

2. 将kindeditor/jsp/lib目录下的3个jar文件复制到Tomcat的lib目录下,并重新启动Tomcat。
 * commons-fileupload-1.2.1.jar
 * commons-io-1.4.jar
 * json_simple-1.1.jar
以下用我下载的副文本编辑器为例
3.把下边的集成代表粘贴到目标文件中(记得修改必要的数据)
代码如下:
<link rel="stylesheet" href="<%=request.getContextPath() %>/kindeditor/themes/default/default.css" />
 <link rel="stylesheet" href="<%=request.getContextPath() %>/kindeditor/plugins/code/prettify.css" />
 <script charset="utf-8" src="<%=request.getContextPath() %>/kindeditor/kindeditor.js"></script>
 <script charset="utf-8" src="<%=request.getContextPath() %>/kindeditor/lang/zh_CN.js"></script>
 <script charset="utf-8" src="<%=request.getContextPath() %>/kindeditor/plugins/code/prettify.js"></script>
 <script>
  KindEditor.ready(function(K) {
  //这里名字是富文本域的name,后台取数据时用的name
   var editor1 = K.create(‘textarea[name="context"]‘, {
    cssPath : ‘<%=request.getContextPath() %>/kindeditor/plugins/code/prettify.css‘,
    uploadJson : ‘<%=request.getContextPath() %>/kindeditor/jsp/upload_json.jsp‘,
    fileManagerJson : ‘<%=request.getContextPath() %>/kindeditor/jsp/file_manager_json.jsp‘,
    allowFileManager : true,
    afterCreate : function() {
     var self = this;
     K.ctrl(document, 13, function() {
      self.sync();
      //注意修改这里的form表单的名字
      document.forms[‘nameForm‘].submit();
     });
     K.ctrl(self.edit.doc, 13, function() {
      self.sync();
      document.forms[‘nameForm‘].submit();
     });
    }
   });
   prettyPrint();
  });
 </script
4.运行项目,效果就出来了。








































以上是关于给web项目整合富文本编辑器的主要内容,如果未能解决你的问题,请参考以下文章

linux Vi 编辑器 如何复制整行n内容,这样才能粘贴到文本中

WEB项目中使用UEditor(富文本编辑器)

linux Vi 编辑器 如何复制整行n内容,这样才能粘贴到文本中

一款开源的 Web 富文本编辑器

NSTableView:直接编辑文本字段而不突出显示整行

MFC中如何给编辑框设置文本内容?