日期时间信息Script


<!--One step to installing this script-->

<!--1) Insert everything below to BODY of your page-->

<!--Customize messages to your own-->



<script language="Javascript">

<!--



//Credit must stay intact

//Visit java-scripts.net or http://wsabstract.com for this script



now = new Date



if (now.getHours() < 5) {

document.write("What are you doing up so late?")

}

else if (now.getHours() < 9) {

document.write("Good morning!")

}

else if (now.getHours() < 17) {

document.write("No surfing during work hours!")

}

else {

document.write("Good evening!")

}

//-->

</script>