dnf热情的蔷薇改黑剑:有关html编辑器的问题。紧急!紧急!紧急!

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/03 09:08:36
怎样把html编辑器内的内容添加到隐形框中。哪位高手能帮我解决一下,我急用
<iframe ID="editor" src="editor.asp" frameborder=1 scrolling=no width="620" height="405" ></iframe>
<textarea cols=70 name=content rows=10 style="display:none ">

</textarea>
就是把<iframe>中的内容添加到<textarea>,以便把数据加入到后台数据库中

<script language="JavaScript">
document.formname.textareaname.value=content.document.body.innerHTML;
</script>

用这个试试
<input type="hidden" name="content" value="">
<iframe ID="editor" src="editor.asp?id=content&style=你定义的样式" frameborder="0" scrolling="no" width="620" HEIGHT="405"></iframe>