关于修改网页编辑器的讨论
原来的只能发布文本信息,我想改成支持HTML的:原来的:
<tr>
<td width="20%" height="30">* <strong>信息内容:</strong></td>
<td height="30"><textarea rows="10" name="dtext" cols="50" onKeyDown="checkMaxInput(this.form)" onKeyUp="checkMaxInput(this.form)"></textarea><br>
* 800字以内 目前还可以写
<input readonly type=text name=remLen size=4 maxlength=2 value="800" style="border: 1 solid #888888">
个字</td>
</tr>
修改成:
<tr>
<td width="20%" height="30">* <strong>信息内容:</strong></td>
<td height="30">
<textarea name="dtext" style="display:none"></textarea>
<iframe ID="eWebEditor1" src="/ewebeditor.htm" frameborder="0" scrolling="no" width="500" HEIGHT="350"></iframe>
<br>
* 800字以内 目前还可以写
<input readonly type=text name=remLen size=4 maxlength=2 value="800" style="border: 1 solid #888888">
个字</td>
</tr>
数据保存接口处出现问题~~~~~~~~~~