码迷,mamicode.com
首页 > 其他好文 > 详细

如何使用FCKeditor工具

时间:2015-05-14 10:07:03      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:fckeditor   在线编辑器   

这里我为大家介绍FCKeditor工具的使用.
<!-- 导入相应的FCKeditor的js文件 -->
	<script type="text/javascript" src="${pageContext.request.contextPath }/fckeditor/fckeditor.js"></script>
	<script type="text/javascript">
		$(function(){
		//创建对象
		var oFCKeditor=new FCKeditor('content');//参数就是提交表单时的参数名
		//必须要指定的属性
		//用于指定fckeditor的核心文件(javascript,css,html等文件)的存放路径
		oFCKeditor.BasePath="${pageContext.request.contextPath}/fckeditor/";//用于指定fckeditor核心文件存放的路径。
		//一些配置
		oFCKeditor.Height=300;
		oFCKeditor.Width="93%";
		oFCKeditor.ToolbarSet="bbs";
		//替换指定位置为ofckeditor
		oFCKeditor.ReplaceTextarea();
		});

	</script>

如何使用FCKeditor工具

标签:fckeditor   在线编辑器   

原文地址:http://blog.csdn.net/u014010769/article/details/45715999

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!