一、js獲取當前日期時間
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( ); //獲取日期與時間
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( ); //獲取日期與時間
二、日期時間腳本庫方法列表
1、Date.prototype.isLeapYear 判斷閏年
2、Date.prototype.Format 日期格式化
3、Date.prototype.DateAdd 日期計算
4、Date.prototype.DateDiff 比較日期差
5、Date.prototype.toString 日期轉字符串
6、Date.prototype.toArray 日期分割為數組
7、Date.prototype.DatePart 取日期的部分信息
8、Date.prototype.MaxDayOfDate 取日期所在月的最大天數
9、Date.prototype.WeekNumOfYear 判斷日期所在年的第幾周
10、StringToDate 字符串轉日期型
11、IsValidDate 驗證日期有效性
12、CheckDateTime 完整日期時間檢查
13、DaysBetween 日期天數差
1、Date.prototype.isLeapYear 判斷閏年
2、Date.prototype.Format 日期格式化
3、Date.prototype.DateAdd 日期計算
4、Date.prototype.DateDiff 比較日期差
5、Date.prototype.toString 日期轉字符串
6、Date.prototype.toArray 日期分割為數組
7、Date.prototype.DatePart 取日期的部分信息
8、Date.prototype.MaxDayOfDate 取日期所在月的最大天數
9、Date.prototype.WeekNumOfYear 判斷日期所在年的第幾周
10、StringToDate 字符串轉日期型
11、IsValidDate 驗證日期有效性
12、CheckDateTime 完整日期時間檢查
13、DaysBetween 日期天數差