[求助]提交表单问题?
我在网上下载了一个UBB编辑器---ewebeditor在我的发表帖子页中我是这样运用它,主要代码如下:
<FORM method="POST" name="newform" action="postnew.asp">
<INPUT type="hidden" name="content1">
<IFRAME ID="eWebEditor1" src="ewebeditor/ewebeditor.asp?id=content1&style=s_coolblue" frameborder="0" scrolling="no" width="600" height="350" name="content1"></IFRAME>
</FORM>
<input type=button class="buttonface" value="发表" onclick="newformcheck()">
<input type=reset class="buttonface" value="重填">
其中newformcheck()如下:
sub newformcheck()
if document.newform.content1.value="" then
msgbox "请输入帖子内容",48,"帖子内容"
document.newform.content.focus()
elseif len(document.newform.content1.value)>1500 then
msgbox "每条帖子内容不超过1500个字符!",48,"帖子过长"
document.newform.content1.focus()
else
'当用户提交的客户留言表单通过数据验证之后,调用submit方法来提交表单
document.newform.submit
end if
end sub
问题:为什么这样编写后,不论在UBB编辑器中写下多少内容,提交后,老是弹出"请输入帖子内容"的对话框?
[此贴子已经被作者于2006-10-3 12:59:31编辑过]