ALERT是JAVA脚本中的这种对话框,为什么<script language="vbscript">可用JAVA呢?
html>
<body>
<h2>根据不同的考试成绩确定等级</h2>
<script language="vbscript">
dim cj
cj=inputbox("请输入你的考试成绩:")
if cj<60 then
alert("等级评定为:差")
elseif cj>=60 and cj<80 then
alert("等级评定为:中")
elseif cj>=80 and cj<90 then
alert("等级评定为:良")
elseif cj>=90 and cj<=100 then
alert("等级评定为:优")
else
alert("你输入的成绩有问题!")
end if
</script>
</body>
</html>
“JAVA脚本中的这种对话框用ALERT”,但<script language="vbscript">为什么可用JAVA脚本语言?