簡單調用fckeditor

fckeditor很是好用,並且安裝也很簡單html

首先從官網http://ckeditor.com/download下載"CKEditor",解壓縮,得到"ckeditor"java

因爲我使用的是java,因而我又下了一個"CKEditor for Java",解壓縮,得到"ckeditor-java-core-x.x.x.jar"code

將"ckeditor"放入項目的WebContent目錄下面,具體位置就看我的愛好了orm

接着將"ckeditor-java-core-x.x.x.jar"放入WEB-INF/lib中去htm

在JSP的上方添加「<%@ taglib uri="http://ckeditor.com" prefix="ckeditor" %>」get

而後在<textarea name="A" ></textarea>的標籤後面加上it

「<ckeditor:replace replace="A" basePath="XXX/ckeditor/"/>form

其中"replace"的值是"textarea'的name 或是 idclass

basePath的值是"ckeditor"的路徑下載

一個簡單的例子以下

<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib uri="http://ckeditor.com" prefix="ckeditor" %>
<form>
<textarea name="A"></textarea>
<ckeditor:replace replace="A" basePath="xxxx/ckeditor/"/>
</form>
這只是fckeditor的一種調用方法,fckeditor的其餘使用方法均可以在官網查到
相關文章
相關標籤/搜索