正确,呵呵
有一个问题:我想当点击alert时,就想让程序停止运行,不让form提交到2.asp去,怎么作?action.href="1.asp"会刷新,将form.ff中的值清空,我想让form.ff中的值保持不变,如:
1.asp:
<script language=vbs>
function check()
if len(form.ff.value)<>10 then
alert("输入10个字符"
action.href="1.asp"
return false
end if
end function
</script>
<form action="2.asp" name="form" method="post">
<input name=ff type=text>
<input type=submit name=submit value="确定" onclick=check()>