学校做项目,下载了个新浪博客HtmlEditor在线编辑器(OFFICE2007风格)编辑器。
使用方法如下:
<input type="hidden" name="content" id="content" />
<iframe src="Edit/editor.htm?id=content&ReadCookie=0" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" width="621" height="459" "></iframe>我在首尾添加了表单提交代码:
<form name="form1" method="post" action="servlet/diaryservlet.action">
<input type="hidden" name="content" id="content" value=" ">
<iframe id="myiframe" src="Edit/editor.jsp?id=content&ReadCookie=0" frameborder="0" scrolling="no" width="623" height="460"></iframe>
<input type="submit" value="保存">
</form>然后接收端只有IE能收到hidden的value值   火狐、谷歌都收不到。
学JAVA不到2个月 还是个新手,望各位帮帮忙。