[求助]ASP表单提交错误
<script language=vbscript> function checkinfo()
if form1.s1.value="jq" then
document.form1.action="query.asp"
else
document.form1.action="mhquery.asp"
end if
document.form1.submit
end function
</script>
**********************************************
<form method="post" name="form1" >
<input type="radio" name="s1" value="jq" checked> 精确查询
<input type="radio" name="s1" value="mh" >模糊查询
<input type="button" value="提 交" name="B1" onclick="checkinfo()">
</form>
我都搞得头大了,说是脚本错误