javaweb项目中引入CKeditor组件

CKeditor的安装与使用  for jsp:

FCKeditor是一个专门使用在网页上属于开放源代码的所见即所得文字编辑器。

一、下载CKEditor

      

      http://download.cksource.com/CKEditor/CKEditor/

打开连接往下拉,可以找到最新的版本。 下载zip包,并解压。

   

二、安装CKEditor

       解压ckeditor_4.11.1_standard.zip,得到ckeditor目录,将ckeditor整个目录拷贝到WebRoot下。

javaweb项目中引入CKeditor组件_第1张图片

三、编辑ckeditorDemo.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>



  
    
    
    ckeditor 的使用
	
	
	    
	
	
	
	
	 
	
	
	
  
  
  
  
评论区:

需要注意三个地方:

javaweb项目中引入CKeditor组件_第2张图片

 

四、打开浏览器查看效果

输入:http://localhost:8080/xiaohua/ckeditorDemo.jsp

javaweb项目中引入CKeditor组件_第3张图片

至此,就可以使用该组件,带来的非凡体验了。

你可能感兴趣的:(常用工具)