按时间显示一段温馨提示

该JAVAScript脚本按不同的时间段提示诸如“下午好! 今天是 2012年4月21日 星期六”的温馨提示。
诸如这样的提示


以下是javaScript脚本代码~

<code><SCRIPT type="text/javascript">   
    today=new Date();   
    var day; var date; var hello;   
    hour=new Date().getHours()   
    if(hour < 6)hello='  凌晨好! '   
    else if(hour < 9)hello=' 早上好! '   
    else if(hour < 12)hello=' 上午好! '   
    else if(hour < 14)hello=' 中午好! '   
    else if(hour < 17)hello=' 下午好! '   
    else if(hour < 19)hello=' 傍晚好! '   
    else if(hour < 22)hello=' 晚上好! '   
    else {hello='夜深了! '}   
    var webUrl = webUrl;   
    document.write(' '+hello);   
    </SCRIPT>   
    <SCRIPT type="text/javascript">   
     today=new Date(); var tdate,tday, x,year; var x = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五","星期六");   
      var MSIE=navigator.userAgent.indexOf("MSIE");   
      if(MSIE != -1)   
       year =(today.getFullYear());   
      else  
       year = (today.getYear()+1900);   
      tdate= year+ "年" + (today.getMonth() + 1 ) + "月" + today.getDate() + "日" + " " + x[today.getDay()];   
      document.write(tdate);    
    //-->   
    </SCRIPT>  </code>

只要把以上代码放到网页相应的地方~

0 thoughts on “按时间显示一段温馨提示
添加一条新回复 回到顶部

亲爱的,主人已经关闭了这篇文章的评论 。