javascript
JS获取当前日期及时间
Js獲取當(dāng)前日期時間及其它操作
var myDate = new Date();
myDate.getYear();????????//獲取當(dāng)前年份(2位)
myDate.getFullYear();????//獲取完整的年份(4位,1970-????)
myDate.getMonth();???????//獲取當(dāng)前月份(0-11,0代表1月)
myDate.getDate();????????//獲取當(dāng)前日(1-31)
myDate.getDay();?????????//獲取當(dāng)前星期X(0-6,0代表星期天)
myDate.getTime();????????//獲取當(dāng)前時間(從1970.1.1開始的毫秒數(shù))
myDate.getHours();???????//獲取當(dāng)前小時數(shù)(0-23)
myDate.getMinutes();?????//獲取當(dāng)前分鐘數(shù)(0-59)
myDate.getSeconds();?????//獲取當(dāng)前秒數(shù)(0-59)
myDate.getMilliseconds();????//獲取當(dāng)前毫秒數(shù)(0-999)
myDate.toLocaleDateString();?????//獲取當(dāng)前日期
var mytime=myDate.toLocaleTimeString();?????//獲取當(dāng)前時間
myDate.toLocaleString( );????????//獲取日期與時間
?
日期時間腳本庫方法列表
Date.prototype.isLeapYear 判斷閏年
Date.prototype.Format 日期格式化
Date.prototype.DateAdd 日期計算
Date.prototype.DateDiff 比較日期差
Date.prototype.toString 日期轉(zhuǎn)字符串
Date.prototype.toArray 日期分割為數(shù)組
Date.prototype.DatePart 取日期的部分信息
Date.prototype.MaxDayOfDate 取日期所在月的最大天數(shù)
Date.prototype.WeekNumOfYear 判斷日期所在年的第幾周
StringToDate 字符串轉(zhuǎn)日期型
IsValidDate 驗證日期有效性
CheckDateTime 完整日期時間檢查
daysBetween 日期天數(shù)差
轉(zhuǎn)載于:https://www.cnblogs.com/jqq0820/p/5016069.html
總結(jié)
以上是生活随笔為你收集整理的JS获取当前日期及时间的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【十大经典数据挖掘算法】C4.5
- 下一篇: javascript的性能优化tips