返回利用JS获取当......登陆

利用JS获取当前系统时间

Viggo2019-04-27 18:08:12279

利用js的date函数可以获取当前电脑时间,并可以分不同的时间种类获取单个时间值


<!DOCTYPE html>
<html>
<head>
   <meta charset="UTF-8">
   <title>Date日期操作</title>
</head>
<body>
<script>
   let time = new Date();
   document.write(time+'<br>')

   Year = time.getFullYear()//年
   Month = time.getMonth()+1//月0代表1月
   Day = time.getDate()//日

   Hours = time.getHours()//时
   Minutes = time.getMinutes()//分
   Seconds = time.getSeconds()//秒

   document.write('现在的时间是'+ Year+'年'+Month+'月'+Day+'日 '+Hours+':'+Minutes+':'+Seconds)


</script>

</body>
</html>

最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送