我用了个Fckediter编辑器!可是有哪位高手知道怎么用js动态改变编辑区的内容啊?
<form. action=”show.jsp” method=”post” target=”_blank”>
    <table border=”0″ width=”700″>
      <tr>
      <td>
        <textarea id=”content” name=”content” style=”WIDTH: 100%; HEIGHT: 400px”>input</textarea>
        <script. type=”text/javascript”>
              var FCKeditor = new FCKeditor(’content? ;
              oFCKeditor.BasePath = “/TestFCKeditor/FCKeditor/” ;
              oFCKeditor.Height = 400;
              oFCKeditor.ToolbarSet = “Default” ;
              oFCKeditor.ReplaceTextarea();
        </script>
        <input type=”submit” value=”Submit”>
      </td>
      </tr>
    </table>
</form>