html中顯示當前系統時間代碼

來源:互聯網
上載者:User

標籤:function   網路   河北   網頁   

   在自己的網頁中插入當前的系統時間代碼

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head>  <title>JavaScript即時顯示系統時間 - 河北魅力網路整理</title> </head><body><span id=localtime></span><script type="text/javascript">function showLocale(objD){ var str,colorhead,colorfoot; var yy = objD.getYear(); if(yy<1900) yy = yy+1900; var MM = objD.getMonth()+1; if(MM<10) MM = ‘0‘ + MM; var dd = objD.getDate(); if(dd<10) dd = ‘0‘ + dd; var hh = objD.getHours(); if(hh<10) hh = ‘0‘ + hh; var mm = objD.getMinutes(); if(mm<10) mm = ‘0‘ + mm; var ss = objD.getSeconds(); if(ss<10) ss = ‘0‘ + ss; var ww = objD.getDay(); if  ( ww==0 )  colorhead="<font color=\"#FF0000\">"; if  ( ww > 0 && ww < 6 )  colorhead="<font color=\"#373737\">"; if  ( ww==6 )  colorhead="<font color=\"#008000\">"; if  (ww==0)  ww="星期日"; if  (ww==1)  ww="星期一"; if  (ww==2)  ww="星期二"; if  (ww==3)  ww="星期三"; if  (ww==4)  ww="星期四"; if  (ww==5)  ww="星期五"; if  (ww==6)  ww="星期六"; colorfoot="</font>" str = colorhead + yy + "-" + MM + "-" + dd + " " + hh + ":" + mm + ":" + ss + "  " + ww + colorfoot; return(str);}function tick(){ var today; today = new Date(); document.getElementById("localtime").innerHTML = showLocale(today); window.setTimeout("tick()", 1000);}tick();</script><br />

參考資料

html中顯示當前系統時間代碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.