JSP 如何在用戶端同步顯示伺服器時間

來源:互聯網
上載者:User

在用戶端同步顯示伺服器時間解決辦法:

1.用ajax非同步提交取得時間,然後局部重新整理頁面。

2.取得伺服器時間,在本地(用戶端)實現時間累加。

 

第一種方法顯然加大了伺服器的負載量,但是時間準確。(中間網速另算)

第二中每次只取得一次時間,節約伺服器開銷。

 

這次我採用第二種方法實現此功能,希望對學習者有所協助。

首先在用戶端得到伺服器時間代碼如下:

<%
    Date date = new Date();
%>

得到時間後用js函數進行累加

<script language="javascript">  
 var hours, minutes, seconds, xfile;
 var intHours, intMinutes, intSeconds;
  var today= new Date();
  today.setTime(<%=date.getTime()%>);    //把伺服器時間賦給JS函數
   function time_callback(){  
    intHours = today.getHours();
  intMinutes = today.getMinutes();
  intSeconds = today.getSeconds();
  if (intHours == 0) {
  hours = "12 : ";
  xfile = "午夜 ";
  } else if (intHours < 12) {
  hours = intHours+" : ";
  xfile = "上午 ";
  } else if (intHours == 12) {
  hours = "12 : ";
  xfile = "正午 ";
  } else {
  intHours = intHours - 12
  hours = intHours + " : ";
  xfile = "下午 ";
  }
  if (intMinutes < 10) {
  minutes = "0"+intMinutes+" : ";
  } else {
  minutes = intMinutes+" : ";
  }
  if (intSeconds < 10) {
  seconds = "0"+intSeconds+" ";
  } else {
  seconds = intSeconds+" ";
  }
  timeString = xfile+hours+minutes+seconds;
   
       document.getElementById("time_view").innerHTML  = "&nbsp;&nbsp;&nbsp;" + timeString;
       today.setTime(today.getTime() + 1000);        
   }  
    setInterval("time_callback()",1000);   //每1000毫秒回調此函數

  </script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.