如何在ASP页面的表单中插入FCKeditor编辑器
2个回答
展开全部
有好几种写法,我平常用这种
首先下载好fck并放到你的站点下
在表单页的<head></head>标签中引用fck
例如:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>编辑活动</title>
<script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
</head>
第二步:
你的表单肯定有一个你要使用fck所对应的表单控件
例如<textarea name="content" cols="20" rows="2"><%=content%></textarea>
在这个控件的代码后面加上下面这段
<script type="text/javascript">
var protocol=document.location.protocol;
var hostPath=document.location.host;
sBasePath="fckeditor/";//获取根目录,就是fckeditor在你站点中的路径
var oFCKeditor=new FCKeditor('content');//content也即此表单元素的名字,和上面的表单控件名字设成一样的
oFCKeditor.BasePath=sBasePath;
oFCKeditor.ToolbarSet="default";//这设置fck的工具条样式,你可以自己去定义,也可以用默认
oFCKeditor.Height=280;
oFCKeditor.Value='';
oFCKeditor.ReplaceTextarea();//这里就是用定义好的fck对象替换你之前的表单控件
</script>
这样就可以了
首先下载好fck并放到你的站点下
在表单页的<head></head>标签中引用fck
例如:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>编辑活动</title>
<script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
</head>
第二步:
你的表单肯定有一个你要使用fck所对应的表单控件
例如<textarea name="content" cols="20" rows="2"><%=content%></textarea>
在这个控件的代码后面加上下面这段
<script type="text/javascript">
var protocol=document.location.protocol;
var hostPath=document.location.host;
sBasePath="fckeditor/";//获取根目录,就是fckeditor在你站点中的路径
var oFCKeditor=new FCKeditor('content');//content也即此表单元素的名字,和上面的表单控件名字设成一样的
oFCKeditor.BasePath=sBasePath;
oFCKeditor.ToolbarSet="default";//这设置fck的工具条样式,你可以自己去定义,也可以用默认
oFCKeditor.Height=280;
oFCKeditor.Value='';
oFCKeditor.ReplaceTextarea();//这里就是用定义好的fck对象替换你之前的表单控件
</script>
这样就可以了
追问
我把你的这行代码改这样
sBasePath="../fckeditor/";//获取根目录,就是fckeditor在你站点中的路径
打开网页显示“工具栏设置“default”不存在”
哪里有问题???我是这方面的菜鸟。。。。。
追答
那你把那行去掉,就是设置工具条的那行
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询