用的是sinaEditor编辑器
一个页面,是发布内容的,但是内容里面有对应的几项参考行程 费用包含 费用不含我需要鼠标移上某项,显示对应的编辑器,当提交的时候,将这三个项对应的在编辑器里面输入的内容提交,要如何才能完成这个工作呢??

解决方案 »

  1.   

    js代码实现移上某项,显示对应的编辑器,三个编辑器设置成不同的id,其他的都一样
      

  2.   

    编辑器类sinaEditor.class.php
    调用编辑器的时候是这样写的<?php
    include_once('../system_dntb/sinaEditor.class.php');
    $editor=new sinaEditor('gently_editor');
    $editor->Value='';
    $editor->BasePath='../system_dntb';
    $editor->Height=500;
    $editor->Width=700;
    $editor->AutoSave=false;
    ?>
    <?php
    $editor->Create();
    ?>我不知道该如何进行下面的操作