zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    Mysql int类型你了解多少
    java 小程序开发PKCS7Padding 解密相关问题
    Shiro+JWT 实现权限管理(二)--JWT
    Shiro+JWT 实现权限管理(一)--Shiro
    HTTP常见状态码
    Java开发之Redis
    微信公众号开发总结(一) --程序入口
    成熟男人需要懂得的100件事
    Java8 Time API与老Date之间的转换
    极光推送工具类
  • 原文地址:https://www.cnblogs.com/estellez/p/3973061.html
Copyright © 2011-2022 走看看