爱笔记爱笔记

使用 jquery 获取当前时间的方法

<html>
<head> 
<script type="text/javascript" src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.1/jquery.js"></script> 
<script type="text/javascript">

function currentTime(){
   var d = new Date(),str = '';
    str += d.getFullYear()+'年';
    str  += d.getMonth() + 1+'月';
    str  += d.getDate()+'日';
    str += d.getHours()+'时'; 
    str  += d.getMinutes()+'分'; 
   str+= d.getSeconds()+'秒'; 
   return str;
}

setInterval(function(){$('#time').html(currentTime)},1000);
</script> 
</head> 
<body>
   <div id="time"></div>  
</body>
</html>
本原创文章未经允许不得转载 | 当前页面:爱笔记 » 使用 jquery 获取当前时间的方法