jsp调用fckeditor

将FCKeditor目录拷贝到工程中。
 
调用fckeditor
(1)使用JavaScript来调用。有两种方式。
 
 
第一种:直接调用方式。
步骤1:引入JS文件。
<script   type="text/javascript" src="fckeditor/fckeditor.js"></script>    
步骤2:
<script type="text/javascript">    var oFCKeditor = new FCKeditor( ‘FCKeditor1‘   ) ;    oFCKeditor.BasePath  = "fckeditor/" ;    oFCKeditor.Create() ;</script>    
 
第二种:通过替换多行文本框。
步骤1:引入JS文件。
<script   type="text/javascript" src="fckeditor/fckeditor.js"></script>    
步骤2:创建多行文本框
<textarea rows="10"   cols="40" name="content"></textarea>    
步骤3:
<script type="text/javascript">    window.onload = function()    {       var oFCKeditor = new FCKeditor(‘content‘) ;       oFCKeditor.BasePath  = "fckeditor/"   ;       oFCKeditor.ReplaceTextarea() ;    }</script>    
 
 
(2)通过JSP自定义标签来调用。
步骤1:导入jar包。
步骤2:导入标签库。
<%@taglib   uri="http://java.fckeditor.net" prefix="FCK" %>    
步骤3:
<FCK:editor   instanceName="myFckeditor" basePath="/user/fckeditor"   value=" "></FCK:editor>


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。