📄 2-7.htm
字号:
<html>
<head>
<title>if...then...else示例</title>
</HEAD>
<body>
<Script Language=VBScript>
<!--
dim myValue
myValue=95
if myValue<60 then
document.write "你不及格!"
elseif myValue>=60 and myValue<80 then
document.write "你刚刚及格!"
elseif myValue>=80 and myValue<90 then
document.write "你的成绩不错,获得良好!"
else
document.write "恭喜你,你获得优秀!"
end if
-->
</Script >
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -