白痴新手请教下 如题为什么没对话框?
<html><head>
<title>对话框</title>
</head>
<body>
<script language="VBScript">
sub show
Dim age
age=InputBox("请输入某位先生的年龄:", "输入年龄", "36")
if age>30 then
msgBox"年龄超过30啦……"
else
msgBox"年龄小于30啊……"
end if
if age>30 then document.Write("年龄超过30啦……") else document.Write("年
龄小于30啊……")
end sub
call show
</script>
</body>
</html>