继续 请教 大家 !!!~
<!-- -->是注释符,里面的内容不执行 但是为什么 下述程序非得放在这个符号里面才可以啊<head>
<title>采用框架的实用成绩查询网页</title>
<script language="vbscript">
<!--
sub query_onclick
dim msg
msg=""
if form1.stid.value="" then
msg="请输入学号!"
form1.stid.focus
elseif len(form1.stid.value)<8 or not isnumeric(form1.stid.value) then
msg="学号不符合规范!请重新输入"
form1.stid.focus
elseif form1.course.value="" then msg="课程不能为空"
form1.course.focus
end if
if msg="" then
form1.submit
else
alert(msg)
end if
end sub
sub reset_onclick
form1.stid.value=""
form1.course.value=""
form1.stid.focus
end sub
-->
</script>
</head>