日期:2010-01-26  浏览次数:20790 次

在用ewebeditor编辑器编辑文章的时候(就是修改文章的时候),有没有遇到过,被自动截断了最后一个段落的几行文字,全部文字都跑到录入框外面了的情况呢?

原因是这样的

官方给出的演示方法为

添加

<input type="hidden" name="content1"  value="">
<iframe ID="eWebEditor1" src="ewebeditor.htm?id=content1&style=coolblue" frameborder="0" scrolling="no" width="550" HEIGHT="350" style="margin-top:10px;"></iframe>

那么很多人在修改的时候就会写成

<input type="hidden" name="content1"  value="<%=rs("content")%>">
<iframe ID="eWebEditor1" src="ewebeditor.htm?id=content1&style=coolblue" frameborder="0" scrolling="no" width="550" HEIGHT="350" style="margin-top:10px;"></iframe>

其实这样也未尝不可 你只需要在添加的时候先把内容复制到文本文档里(作用是清除了htm代码),在复制到编辑器就可以了,不过这样很麻烦

其实最好的方法就是 将这个文本字段换成文本区域:

就是把  <input type="hidden" ...  这一段换成 <textarea style="display:none".... 这样

完美解决这个问题 Ye