> VB语言在线手册 > Select case 语句
<!DOCTYPE HTML>
<html>

<body>
<script type="text/vbscript">
d=weekday(Date)

Select Case d
  Case 1
    document.write("Sleepy Sunday")
  Case 2
    document.write("Monday again!")
  Case 3
    document.write("Just Tuesday!")
  Case 4
    document.write("Wednesday!")
  Case 5
    document.write("Thursday...")
  Case 6
    document.write("Finally Friday!")
  Case Else
    document.write("Super Saturday!!!!")
End Select
</script>

<p>This example demonstrates the "Select Case" statement.</p>
<p>You will receive a different greeting based on what day it is.</p>
<p>Note that Sunday=1, Monday=2, Tuesday=3, etc.</p>

</body>
</html>			
上一篇:
下一篇: