實現網站運行時間 , 其實可以透過簡單JS語法即可實現 , 有了運行時間彷彿網站有了生命的感覺 , 對吧
應用中心有現成的插件可以使用 , 不過沒辦法指定顯示的地方是個非常大的使用限制 , 因此透過自行添加程式碼到相關模版中, 可實現自定義位置顯示的目的:
修改教學:
1. 打開你想要添加模版 (例如footer.html) , 找到想要擺放的位置 , 加入以下程式碼- 本站<script LANGUAGE="JavaScript"><!--
- now = new Date()
- nowyear=now.getYear()
- if(nowyear<2000)
- nowyear=nowyear+1900
- nowmonth=now.getMonth()+1
- nowdate=now.getDate()
- years=nowyear-2013
- months=nowmonth-03
- dates=nowdate-01
- if((years<0)||((years==0)&&(months<0))||((years==0)&&(months==0)&&(dates<=0)))
- document.write("<span><font color=red>你的系統時間有問題</font></span>")
- else {
- if(dates<0) {
- months=months-1
- dates=dates+30
- }
- if(months<0) {
- years=years-1
- months=months+12
- }
- document.write("已運營")
- if (years>0) {
- document.write(years)
- document.write("年")
- }
- if(months>0) {
- document.write(months)
- document.write("個月")
- }
- if(((years>0)||(months>0))&&(dates>0))
- document.write("零")
- if(dates>0) {
- document.write(dates)
- document.write("天")
- }
- else
- document.write("整")
-
- if((months==0)&&(dates==0)) {
- document.write("<b>今天是SR數位設計工作室的生日!")
-
- document.write("</b>")
- }
- }
- //-->
- </script>
複製代碼 最後圖片的部分是稍微美化過後的樣式 (我是把它添加在搜尋列旁)
|