If…then..else 语句
- <html>
- <head>
- <script type="text/vbscript">
- function greeting()
- i=hour(time)
- if i < 10 then
- document.write("Good morning!")
- else
- document.write("Have a nice day!")
- end if
- end function
- </script>
- </head>
- <body onload="greeting()">
- </body>
- </html>