If…then..elseif 语句

  1. <html>
  2.  
  3. <head>
  4. <script type="text/vbscript">
  5. function greeting()
  6. i=hour(time)
  7. If i = 10 then
  8. document.write("Just started...!")
  9. elseif i = 11 then
  10. document.write("Hungry!")
  11. elseif i = 12 then
  12. document.write("Ah, lunch-time!")
  13. elseif i = 16 then
  14. document.write("Time to go home!")
  15. else
  16. document.write("Unknown")
  17. end if
  18. end function
  19. </script>
  20. </head>
  21.  
  22. <body onload="greeting()">
  23. </body>
  24.  
  25. </html>