FCKeditor配置

FCKeditor配置今天配置了FCKeditor,具体如下:1.先在官网下载fckeditor的包,解压到项目中2.在web.xml里加上 Connector net.fckeditor.connector.ConnectorServ

FCKeditor配置"

今天配置了FCKeditor,具体如下:

1.先在官网下载fckeditor的包,解压到项目中

2.在web.xml里加上

<servlet>
	<servlet-name>Connector</servlet-name>
	<servlet-class>
		net.fckeditor.connector.ConnectorServlet
	</servlet-class>
	<load-on-startup>
		1
	</load-on-startup>
</servlet>
<servlet-mapping>
	<servlet-name>Connector</servlet-name>
	<url-pattern>
                /fckeditor/editor/filemanager/connectors/×
        </url-pattern>
</servlet-mapping>

 3.struts 2的配置要写成这样:

<filter-mapping>
	<filter-name>struts2</filter-name>
	<url-pattern>*.action</url-pattern>
</filter-mapping>

 不能写成

<filter-mapping>
	<filter-name>struts2</filter-name>
	<url-pattern>/*</url-pattern>
</filter-mapping>

 这样struts会拦截fckeditor的请求,fckeditor上传图片的时候就处理不了了。

4.jsp页面:

<script type="text/javascript" src="<%=basePath%>/fckeditor/fckeditor.js"></script>
<script type="text/javascript">
$(function(){
	var sBasePath = "<%=basePath%>/fckeditor/";

	var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
	oFCKeditor.BasePath	= sBasePath ;
	oFCKeditor.ReplaceTextarea() ;
});
</script>

 

<form action="saveContent" method="post" target="_blank">
	<div>
		<textarea name="FCKeditor1" rows="10" cols="80" style="width: 100%; height: 800px">
                        example!
                </textarea>
	</div>
	<br />
	<input type="submit" value="Submit" />
</form>

PS:不过新版的FCKeditor貌似只有上传图片,没有删除图片的功能,需要另外修改

写得比较简洁,做个备忘~

 

今天的文章FCKeditor配置分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:http://bianchenghao.cn/76002.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注