首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

fckeditor + jsp 实例解决方案

2012-03-15 
fckeditor + jsp 实例那位大侠有fckeditor + jsp 实例?帮忙找个,发到我邮箱里1452193122@qq.com,不胜感激!

fckeditor + jsp 实例
那位大侠有fckeditor + jsp 实例?帮忙找个,发到我邮箱里1452193122@qq.com,不胜感激!

[解决办法]

XML code
<html>    <head>            <title>AAA </title>                          function init(){                                       var oFCKeditor = new FCKeditor('content_1') ;                    oFCKeditor.Height = 280 ;                    oFCKeditor.BasePath = "/web路径/fckeditor/";//oFCKeditor.BasePath   = "/FCKEditTest/fckeditor/";                    oFCKeditor.ReplaceTextarea();                }    </head>    <body onload="init()" >        <form action="" method="POST">            <table>                <TR >                    <TD width="300px" >                        内&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;容                            </TD>                    <TD ><!-- ;height:360px -->                        <textarea id="content_1" name="content"  id="content" style="width:285px;">                            AAAA                        </textarea>                                        </TD>                </TR>            </table>        </form>    </body></html> 

热点排行