怎么用Javascript控制fckeditor编辑框里的内容(ASP)?

可以随意控制fckeditor编辑框里的内容?应该控制FCK里的源代码就可以了,但是我不知道该怎么做。1楼的谢谢你,不过我都试过的... 可以随意控制fckeditor编辑框里的内容?应该控制FCK里的源代码就可以了,但是我不知道该怎么做。
1楼的谢谢你,不过我都试过的
展开
 我来答
贯真
2007-07-10 · TA获得超过2698个赞
知道大有可为答主
回答量:1022
采纳率:0%
帮助的人:1074万
展开全部
使用JAVASCRIPT版的FCK,在页面加载时(未打开FCK),创建一个隐藏的TextArea域,这个TextArea的name和ID要和创建的FCK实例名称一致,然后点击"Open Editor"按钮时,通过调用一段函数,使用FCK的ReplaceTextarea()方法来创建FCKeditor,代码如下:

CODE:
<script type="text/javascript">
<!--
function showFCK(){
var oFCKeditor = new FCKeditor( 'fbContent' ) ;
oFCKeditor.BasePath = '/FCKeditor/' ;
oFCKeditor.ToolbarSet = 'Basic' ;
oFCKeditor.Width = '100%' ;
oFCKeditor.Height = '200' ;
oFCKeditor.ReplaceTextarea() ;
}
//-->
</script>
<textarea name="fbContent" id="fbContent">textarea>

然后就可以根据FCKeditor编辑器的API控制你的fckeditor。
比如最基本的数据验证,如何在提交的时候用JS判断当前编辑器区域内是否有内容,FCK的API提供了GetLength()方法;

再比如如何通过脚本向FCK里插入内容,使用InsertHTML()等;

还有,在用户定制功能时,中间步骤可能要执行FCK的一些内嵌操作,那就用ExecuteCommand()方法。

详细的API列表,请查看FCKeditor的Wiki。而常用的API,请查看FCK压缩包里的_samples/html/sample08.html。此处就不贴代码了。
三根鞋带
2007-07-10 · TA获得超过2260个赞
知道大有可为答主
回答量:1156
采纳率:0%
帮助的人:0
展开全部
1)
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1');//javascript 取得FCKeditor1

oEditor.InsertHtml("用javascript插入");

------------------------------------------------------
2)
<script type="text/javascript">

var oFCKeditor = new FCKeditor( 'logbody' ) ;

oFCKeditor.BasePath = ' FCKeditor/' ;

oFCKeditor.ToolbarSet = 'Basic' ;

oFCKeditor.Width = '100%' ;

oFCKeditor.Height = '400' ;

oFCKeditor.Value = '' ;

oFCKeditor.Create() ;

</script>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jy02748550
2007-07-11 · TA获得超过315个赞
知道答主
回答量:101
采纳率:0%
帮助的人:76.3万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式