注册 登录
编程论坛 ASP技术论坛

我的在线编辑器不能显示,请大家给看看

lishizhong_899 发布于 2008-12-01 11:20, 1003 次点击
代码如下:
    <tr>
      <td height="30"><input type="hidden" name="content1"id="content1" />
   &nbsp; <span class="STYLE2">新闻内容:</span></td>
    </tr>
    <tr>
      <td height="25">
      <iframe id="eWebEditor1" src="ewebeditor/ewebeditor.htm?id=content1&style=blue" frameborder="0" scrolling="no" width="760" height="350"></iframe>
</td>
    </tr>
可是我在浏览时编辑器却没有显示出来,是怎么回事呀,请大家给看看
7 回复
#2
sunfishy2008-12-01 11:36
<iframe>前加上
<input type="text" name="content">

//或者加上<textarea>也可以.
#3
lishizhong_8992008-12-01 11:40
回复 第2楼 sunfishy 的帖子
还是不行.还有其它办法吗?
#4
sunfishy2008-12-01 11:42
<input type="text" name="content" id="content" style="display:none;">
#5
sunfishy2008-12-01 11:43
<input type="text" name="content" id="content" style="display:none;">
<iframe id="eWebEditor1" src="ewebeditor/ewebeditor.htm?id=content1&style=blue" frameborder="0" scrolling="no" width="760" height="350"></iframe>
#6
sunfishy2008-12-01 11:47
没认真看你的代码.

你已经有写好了input

只是少了个空格

<td height="30"><input type="hidden" name="content1"id="content1" />
这里的要改下
<td height="30"><input type="hidden" name="content1" id="content1" />

name与id之间要有空格分开.
#7
lishizhong_8992008-12-02 09:18
谢谢各位
谢谢各位啦!我已经弄好了
1