后天要做一个新闻发布的功能,但不知道要怎么嵌入文本编辑器,高手帮忙,最好有以前的案例发过来参考下,谢谢!

解决方案 »

  1.   

    1.注意:ewebeditor默认为asp平台下使用,如在其它平台下使用,请用记事本打开ewebeditor.htm文件,按如下方法修改保存即可。
       config.ServerExt = "asp";
       改为
       config.ServerExt = "php";
       或
       config.ServerExt = "jsp";
       或
       config.ServerExt = "aspx";
    2.
    <form method="post" action="test.php">
    <INPUT type="hidden" name="content" value="">
    <IFRAME ID="eWebEditor1" src="../ewebeditor.htm?id=content&style=coolblue" frameborder="0" scrolling="no" width="550" height="350"></IFRAME>
    <br/>
    <input type="submit" value="提交"/>
    </form>name为content的input隐藏域的value为存储编辑的内容.IFRAME把文本编辑器加进来,你只需改action后的页面即可,提交后内容进入$_POST['content']
      

  2.   

    一般的小网站用个textarea即可,没有必要用文本编辑器