欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java 获取当前时间及实现时间倒计时功能【推荐】

程序员文章站 2023-11-17 11:37:22
引言       在一些项目中或是一些特殊的业务场景中,需要用到显示系统的当前时间,以及一些固定的时间倒计时,时间到后做...

引言

      在一些项目中或是一些特殊的业务场景中,需要用到显示系统的当前时间,以及一些固定的时间倒计时,时间到后做一些什么事情的业务 。接下来咱们就具体看看代码是怎么实现的:

<%@ page language="java" contenttype="text/html; charset=utf-8"
   pageencoding="utf-8"%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- <meta content="6;url=login2.jsp" http-equiv="refresh" > 等待多少秒后自动跳转到另一页面 -->
<title>时间倒计时</title>
</head>
<script type="text/javascript">
  var lefttime=600000; // 1000*1*10 (十分钟)
  //时间倒计时
   function backtime(){
  var d,h,m,s;
  if(lefttime>0){
    d=math.floor(lefttime/1000/60/60/24); //天
     h=math.floor(lefttime/1000/60/60%24); //时
     m=checktime(math.floor(lefttime/1000/60%60)); //分
     s=checktime(math.floor(lefttime/1000%60));   //秒
     lefttime=lefttime-1000; //每次进来将总时间减去1秒
     document.getelementbyid("backtime").innerhtml=" "+h+"时 :"+m+"分 :"+s+"秒" ;
  }else{
    lefttime=600000;//时间到后,重置一个时间
   }
  settimeout(backtime,1000); //设置定时任务,1秒钟执行一次
 } 
  //获取当前时间
   function disptime(){
   var date=new date();//获取当前时间(包括日期)
   var year=date.getfullyear();
   var month=checktime(date.getmonth()+1);
   var day=checktime(date.getdate());
   var hh=checktime(date.gethours());
   var mm=checktime(date.getminutes());
   var ss=checktime(date.getseconds());
   document.getelementbyid("currenttime").innerhtml=" "+year+"-"+month+"-"+day+" "+hh+":"+mm+":"+ss;
   var mytimer=settimeout("disptime()",1000);
 }
  //在number小于10的数组前补0
  function checktime(i){
  if(i<10){
   i="0"+i; 
  }
  return i;
 }
  window.onload=function(){
   disptime();//当前时间
   backtime();//倒计时
  }
</script>
 <body>
    <div style="margin-top:8px;">
      当前时间:<font id="currenttime" color="green"></font>      <br> 
      剩余时间: <font id="backtime" color="red" ></font>
    </div> 
</body>
</html>

显示效果:

Java 获取当前时间及实现时间倒计时功能【推荐】

总结

以上所述是小编给大家介绍的java 获取当前时间及实现时间倒计时功能,希望对大家有所帮助