FckEditor学习札记1-配置使用FckEditor
FckEditor学习笔记1-配置使用FckEditor三.使用,有四种方法来调用1.使用JS直接创建?? script typetext/j
FckEditor学习笔记1-配置使用FckEditor
三.使用,有四种方法来调用
1.使用JS直接创建
?? <script type="text/javascript">var oFCKeditor = new FCKeditor('FCKeditor1');//1.BasePath表示fckeditor的目录//第一个/表示WEBServer的根目录,所以必须加上工程路径//最后必须以/结尾,否则报错//2.可以使用相对路径如: fckeditor/oFCKeditor.BasePath = "/fckeditor/";oFCKeditor.Width = "100%";oFCKeditor.Height = 400;//默认属性 Width 100%// Height 200// Value ""// ToolbarSet "Default"(Basic或自己定制)// BasePath /fckeditor/oFCKeditor.Create();</script>
?
?
2.使用JS替换已有的TextArea
?

<script type="text/javascript">window.onload = function(){var oFCKeditor = new FCKeditor( 'MyTextarea' ) ;oFCKeditor.BasePath = "/fckeditor/" ;oFCKeditor.ReplaceTextarea() ;}</script>?
<textarea id="MyTextarea" name="MyTextarea">This is <b>the</b> initial value.</textarea>
?
3.
var div = document.getElementById("myFCKeditor");
var fck = new FCKeditor("myFCKeditor");
div.innerHTML = fck.CreateHtml();
?
4.使用JSP标签创建
?
1.解压fckeditor-java-2.5-bin.zip2.将解压后的fckeditor-java-core-2.5.jar 以及 lib 目录下所有jar文件拷入WEB-INF\lib目录中3.将fckeditor-java-demo-2.5.war解压,在里面找到 slf4j-simple-1.5.8.jar文件放入WEB-INF\lib目录中4.在JSP页面中加入 <%@ taglib uri="http://java.fckeditor.net" prefix="FCK" %>5.在页面中加入 <!-- 这里的basePath前面的/代表的是工程根目录,各个属性如上注释 --> <!-- 此处value不能为空,至少为一个空格字符串,否则报错 --> <FCK:editor instanceName="myEditor" basePath="/fckeditor" height="200" value=' ' width="100%"></FCK:edito?
?
?