编辑下面的代码:【加编码】
<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>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂