FCK文本编辑器的配置方法

用法

先将web.xml中的内容添加到工程的web.xml文件中。
   添加FCKeditor-2.3.jar 到lib下。
   添加FCKeditor-2.3.tld 到WEB-INF/tlds中.

页面中调用:

1 先引入tld包
<%@ taglib uri="/WEB-INF/tlds/FCKeditor.tld" prefix="FCKeditor"%>

2.添加
<FCKeditor:editor id="saleContent" basePath="FCKeditor/"
   width="635"
   height="400"
   toolbarSet = "Default">
</FCKeditor:editor> 
3.


<FCKeditor:editor id="saleContent" basePath="FCKeditor/"
  width="635"
  height="400"
  toolbarSet = "Default">
  修改的内容放到这里
</FCKeditor:editor> 

你可能感兴趣的:(Web,xml,fckeditor)