⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 2-7.htm

📁 ASP+SQL Server动态网站开发从基础到实践教程
💻 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 + -