//1、js獲取兩個日期之間相差的天數
2function
getdaysbetween(datestring1, datestring2) 9//
2、js獲取當前時間是年份或月份
10var mydate = new
date();
11 mydate.getyear(); //
獲取當前年份(2位)
12 mydate.getfullyear(); //
獲取完整的年份(4位,1970-????)
13 mydate.getmonth(); //
獲取當前月份(0-11,0代表1月)
14 mydate.getdate(); //
獲取當前日(1-31)
15 mydate.getday(); //
獲取當前星期x(0-6,0代表星期天)
16 mydate.gettime(); //
獲取當前時間(從1970.1.1開始的毫秒數)
17 mydate.gethours(); //
獲取當前小時數(0-23)
18 mydate.getminutes(); //
獲取當前分鐘數(0-59)
19 mydate.getseconds(); //
獲取當前秒數(0-59)
20 mydate.getmilliseconds(); //
獲取當前毫秒數(0-999)
21 mydate.tolocaledatestring(); //
獲取當前日期
22var mytime=mydate.tolocaletimestring(); //
獲取當前時間
23 mydate.tolocalestring( ); //
獲取日期與時間
// 更多時間格式處理 moment.js
js對當前時間進行處理
1 js獲取兩個日期之間相差的天數 function getdaysbetween datestring1,datestring2 2 js獲取當前時間是年份或月份 var mydate newdate mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整...
js對當前時間的相關操作
js中獲得當前時間是年份和月份,形如 201208 獲取完整的日期 var date new date var year date.getfullyear var month date.getmonth 1 month month 10 0 month month var mydate year.t...
js獲取當前時間,js時間函式
js獲取當前日期時間及其它操作,js時間函式 var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdat...