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

JS得到当前时间的方法示例

程序员文章站 2022-06-28 08:49:39
本文实例讲述了js得到当前时间的方法。分享给大家供大家参考,具体如下:

本文实例讲述了js得到当前时间的方法。分享给大家供大家参考,具体如下:

<!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">
<title>日期时间</title>
</head>
<body>
<script>
<!--
var mydate = new date();
mydate.getyear(); //获取当前年份(2位)
mydate.getfullyear(); //获取完整的年份(4位,1970-????)
mydate.getmonth(); //获取当前月份(0-11,0代表1月)
mydate.getdate(); //获取当前日(1-31)
mydate.getday(); //获取当前星期x(0-6,0代表星期天)
mydate.gettime(); //获取当前时间(从1970.1.1开始的毫秒数)
mydate.gethours(); //获取当前小时数(0-23)
mydate.getminutes(); //获取当前分钟数(0-59)
mydate.getseconds(); //获取当前秒数(0-59)
mydate.getmilliseconds(); //获取当前毫秒数(0-999)
mydate.tolocaledatestring(); //获取当前日期
var mytime=mydate.tolocaletimestring(); //获取当前时间
mydate.tolocalestring( ); //获取日期与时间
alert(mytime);
//方法二:
today = new date();
var todaystr = today.getyear() + "-";
if(today.getmonth()<10){
 todaystr=todaystr+"0"+today.getmonth();
}
else{
 todaystr=todaystr+today.getmonth();
}
if(today.getday()<10){
 todaystr=todaystr+"-0"+today.getday();
}
else{
 todaystr=todaystr+today.getday();
}
todaystr = todaystr +" "
if(today.gethours()<10){
 todaystr=todaystr+today.gethours();
}
else{
 todaystr=todaystr+today.gethours();
}
if(today.getminutes()<10){
 todaystr=todaystr+":0"+today.getminutes();
}
else{
 todaystr=todaystr+":"+today.getminutes();
}
todaystr = todaystr + ":00";
document.write(todaystr);
//-->
</script>
</body>
</html>

ps:这里再为大家推荐几款时间及日期相关工具供大家参考使用:

在线日期/天数计算器:

在线日期计算器/相差天数计算器:

在线日期天数差计算器:

unix时间戳(timestamp)转换工具:

更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript时间与日期操作技巧总结》、《javascript查找算法技巧总结》、《javascript错误与调试技巧总结》、《javascript数据结构与算法技巧总结》、《javascript遍历算法与技巧总结》及《javascript数学运算用法总结

希望本文所述对大家javascript程序设计有所帮助。