我在网上下载了一个多媒体文本编辑器,怎样才能给它加载到表单中,将其文本域中的内容提交到Action中进行处理?
望高手指点,谢谢了!

解决方案 »

  1.   

    啥叫多媒体文本编辑器??
    应该是网上常见的js+html+css做的小插件吧
    用脚本获取文本容器中的值,并提交给后台,不就能得到了么????
      

  2.   

    文本编辑器就是像这个文本区域一样啊,能设置字体的大小和颜色,插入表情之类的文本框啊!我用iframe标签包含进来了,获取不到其文本域的值啊?
      

  3.   

    <input type="hidden" name="wii_workprocedure">
        <%
    FCKeditor oFCKeditor;
    oFCKeditor = new FCKeditor(request, "wii_workprocedure");
    oFCKeditor.setHeight("500");
    oFCKeditor.setBasePath(request.getContextPath() + "/FCKeditor/");
    oFCKeditor.setValue("");
    out.println(oFCKeditor.create());
    %>
    我的FCK 是这么用的,呵呵,不知道你的是什么,应该都差不多吧