fckeditor的实例

                       

第一步:去官网下载,删除多余的包

删除所有”_”开头的文件和文件夹   
删除FCKeditor的目录下:   
fckeditor.afp 
fckeditor.asp 
fckeditor.cfc 
fckeditor.cfm 
fckeditor.lasso 
fckeditor.pl 
fckeditor.py 
htaccess.txt 
license.txt

第二步:配置web.xml文件

    <servlet>
        <servlet-name>Connector</servlet-name>
        <servlet-class>
            com.test.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>

第三步:配置fckeditor.properties文件

connector.userActionImpl=net.fckeditor.requestcycle.impl.UserActionImpl

第四步:页面调用

<head>
        <title>test3</title>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <script type="text/javascript" src="fckeditor/fckeditor.js"></script>
        <script type="text/javascript">
            window.onload = function()
            {
                var oFCKeditor = new FCKeditor( ‘content‘ ) ;
                oFCKeditor.BasePath = "/myfckeditor/fckeditor/" ;
                oFCKeditor.Config["CustomConfigurationsPath"] = "/myfckeditor/fckeditor/myconfig.js"  ;
                oFCKeditor.ReplaceTextarea() ;
            }
        </script>
    </head>

    <body>
        <form action="show.jsp">
            <textarea id="content" name="content">This is <b>the</b> initial value.</textarea>
            <input type="submit" value="提交">
        </form>
    </body>
时间: 2024-10-09 09:13:39

fckeditor的实例的相关文章

FCKeditor使用方法技术详解

1.概述 FCKeditor是目前最优秀的可见即可得网页编辑器之一,它采用JavaScript编写.具备功能强大.配置容易.跨浏览器.支持多种编程语言.开源等特点.它非常流行,互联网上很容易找到相关技术文档,国内许多WEB项目和大型网站均采用了FCKeditor(如百度,阿里巴巴).本文将通过与PHP相结合,从基本安装到高级的配置循序渐进介绍给广大PHPer. FCKeditor官方网站:http://www.fckeditor.net/ FCKeditor Wiki:http://wiki.f

FCKeditor配置与使用

fckeditor - (1)资料介绍与安装 fckeditor介绍  FCKeditor是一个专门使用在网页上属于开放源代码的所见即所得文字编辑器.  1.fckeditor官网:http://www.fckeditor.net/   2.fckeditor下载:http://www.fckeditor.net/download   FCKeditor_2.6.3(客户端javascript主程序)http://nchc.dl.sourceforge.net/sourceforge/fcked

CKFounder配置,使用

以FCKeditor_2.6.3为例: FCKeditor的主页: http://www.fckeditor.net FCKeditor.zip 客户端: FCKeditor_2.6.3.zip 需要服务器端支持:文件上传 FCKeditor.Java: fckeditor-java-2.4-bin.zip 源码: fckeditor-java-2.4-src.zip 演示工厂: fckeditor-java-demo-2.4.war 使用时直接放到(正在运行的)Tomacat的webapps目

在线文本编辑器cheditor应用实例

CKEditor 即 FCKEDITOR . FCKeditor是目前最优秀的可见即可得网页编辑器之一,它采用JavaScript编写.具备功能强大.配置容易.跨浏览器.支持多种编程语言.开源等特点.它非常流行,互联网上很容易找到相关技术文档,国内许多WEB项目和大型网站均采用了FCKeditor. FCKeditor是一个专门使用在网页上属于开放源代码的所见即所得文字编辑器.它志于轻量化,不需要太复杂的安装步骤即可使用.它可和PHP.JavaScript.ASP.ASP.NET.ColdFus

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

引入fckeditor编辑器入口文件 <chtml file="editors/fckeditor/fckeditor.htm" /> 如果会话中用户ID(user_id)为空(未登录),则临时设一个ID,方便上传文件(图片等) <if x="@{session:user_id}"> <session><we name=user_id>0</we></session> </if> 表

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

引入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>

ESql修改之插入MySQL数据库记录实例

一个资讯网站维护个人内容的实例,添加信息 信息编辑页面 引入编辑器脚本 <script type="text/javascript" src="@{sys:path}fckeditor/fckeditor.js"></script> <BODY leftMargin=0 topMargin=0 MARGINWIDTH="0" MARGINHEIGHT="0" onload="showFC

Fckeditor使用方法

下载地址 http://ckeditor.com/download <?php require('../fckeditor/fckeditor.php'); ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>用PHP调用FCKeditor</title> <

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

引入fckeditor编辑器入口文件(跟前边的例子一样) <chtml file="editors/fckeditor/fckeditor.htm" /> 用户会话临时设置 <if x="@{session:user_id}"> <session><we name=user_id>0</we></session> </if> 表单部分 <form id="Edoit_