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

newFCK函数,FCKEditor编辑器在轻开平台中的使用例子

时间:2015-05-21 06:41:59      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:编辑器   fckeditor   上传文件   web开发   web前端   

引入fckeditor编辑器入口文件

<chtml file="editors/fckeditor/fckeditor.htm" />

如果会话中用户ID(user_id)为空(未登录),则临时设一个ID,方便上传文件(图片等)

<chtml>
<if x="@{session:user_id}">
    <session><we name=user_id>0</we></session>
</if>
</chtml>

提交的表单

<form id="Edoit_Form" method="post" action="@{sys:path}@{sys:curPath}editor_fck_save.chtml">
...
</form>

添加您需要的其他字段

<input name="title" value="您的标题" style="display:none" />

引入FCKEditor编辑器的脚本

<script type="text/javascript">
setFCKHeight(300);//编辑器高度
//setFCKTool("Coder");
//setFCKTool("Basic");
//setFCKValue("");
window.onload = newFCK();//用函数 newFCK() 新建编辑器,默认文本域名称为"content"
//重写内容的函数
doReset = function ()
{
    //document.getElementById(‘Edoit_Form‘).reset();
    FCKeditorAPI.GetInstance(‘content‘).SetHTML("");
}
doSubmit = function ()
{
    //var tit = document.getElementById(‘title‘);
    //if(tit.value=="" || tit.value=="问题:")
    //{alert("有问题就提呗,不要客气嘛!");tit.focus();return;}
    var oEditor = FCKeditorAPI.GetInstance(‘content‘);
    var oDOM = oEditor.EditorDocument;
    var des;
    if(document.all)        // If Internet Explorer.
        des = oEditor.EditorDocument.body.innerText;
    else{                   // If Gecko.
        var r = oDOM.createRange();
        r.selectNodeContents(oDOM.body);
        des = r.toString();
    }
    des = des.Trim();
    if(des=="")
    {alert("没有内容啊,写点呗!");return;}
    var frm = document.getElementById("Edoit_Form");
    frm.submit();
}
</script>

效果如图
技术分享

完整代码

<html>
<head>
<title>FCKEditor编辑器使用例子,newFCK</title>
</head>
<body>
<h3>FCKEditor编辑器使用例子,newFCK</h3>
<!-- 引入fckeditor编辑器入口文件 -->
<chtml file="editors/fckeditor/fckeditor.htm" />
<!-- 如果会话中用户ID(user_id)为空(未登录),则临时设一个ID,方便上传文件(图片等) -->
<chtml>
<if x="@{session:user_id}">
    <session><we name=user_id>0</we></session>
</if>
</chtml>
<!-- 提交的表单 -->
<form id="Edoit_Form" method="post" action="@{sys:path}@{sys:curPath}editor_fck_save.chtml">
<!-- 添加您需要的其他字段 -->
<input name="title" value="您的标题" style="display:none" />
<!-- 引入FCKEditor编辑器的脚本 -->
<script type="text/javascript">
setFCKHeight(300);//编辑器高度
//setFCKTool("Coder");
//setFCKTool("Basic");
//setFCKValue("");
window.onload = newFCK();//用函数 newFCK() 新建编辑器,默认文本域名称为"content"
//重写内容的函数
doReset = function ()
{
    //document.getElementById(‘Edoit_Form‘).reset();
    FCKeditorAPI.GetInstance(‘content‘).SetHTML("");
}
doSubmit = function ()
{
    //var tit = document.getElementById(‘title‘);
    //if(tit.value=="" || tit.value=="问题:")
    //{alert("有问题就提呗,不要客气嘛!");tit.focus();return;}
    var oEditor = FCKeditorAPI.GetInstance(‘content‘);
    var oDOM = oEditor.EditorDocument;
    var des;
    if(document.all)        // If Internet Explorer.
        des = oEditor.EditorDocument.body.innerText;
    else{                   // If Gecko.
        var r = oDOM.createRange();
        r.selectNodeContents(oDOM.body);
        des = r.toString();
    }
    des = des.Trim();
    if(des=="")
    {alert("没有内容啊,写点呗!");return;}
    var frm = document.getElementById("Edoit_Form");
    frm.submit();
}
</script>
<p>
<center><input type=reset name=reset value=重写 onClick="doReset()" />&nbsp;&nbsp;<input type="button" value="提交" onClick="doSubmit()" /></center>
</p>
</form>
</body>
</html>

(例子文件:_samples/editor/editor_fck_new.html)在轻开平台的_samples/editor目录下

轻松互联网开发平台(Easy Do IT)资源下载
平台及最新开发手册免费下载:http://download.csdn.net/download/tx18/8693497
开发实例:轻开B2C电子商务网站,免费下载:http://download.csdn.net/detail/tx18/8318585
轻开平台会不定期升级为大家提供更多强大而Easy的功能,请留意下载最新的版本:http://download.csdn.net/user/tx18

newFCK函数,FCKEditor编辑器在轻开平台中的使用例子

标签:编辑器   fckeditor   上传文件   web开发   web前端   

原文地址:http://blog.csdn.net/tx18/article/details/45881367

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