程序点滴jcodeer.blog.chinaunix.net
jcodeer
全部博文(171)
2012年(2)
2011年(70)
2010年(9)
2009年(14)
2008年(76)
Bean_lee
GY123456
armlife
linky521
g_progra
猥琐才是
athzhang
CU博客助
meiyang_
heq76
gaokeke1
yangyefe
yanganni
tomcodin
qhy95020
allaxin
suntao32
13661379
分类:
2008-05-10 19:09:38
'1.If...Then...Else用法 Dim intType intType = 10 If intType = 5 Then Wscript.echo "intType = 5" ElseIf intType > 10 Then Wscript.echo "intType > 5" Else Wscript.echo "intType < 5" End If '2.Select...EndSelect用法 '简化If...ElseIf...Else...End If的用法,可以使用字符串作为比较的参数 intType = 10 Select Case intType Case 10 Wscript.echo "intType = 10" Case 20 Wscript.echo "intType = 20" Case 30 Wscript.echo "intType = 30" Case Else Wscript.echo "Other" End Select
上一篇:VBScript教程之三(操作符)
下一篇:VBScript教程之五(循环语句)
登录 注册