endlogtimedate = 「2012-05-22 17:10:46」
startlogtimedate = 「2012-05-22 17:10:46」
var endlogtimedate = new date(date.parse(endlogtime.replace(/-/g, "/")));
var startlogtimedate = new date(date.parse(startlogtime.replace(/-/g, "/")));
日期的操作:
endlogtimedate .getyear(); //獲取當前年份(2位)
endlogtimedate .getfullyear(); //獲取完整的年份(4位,1970-????)
endlogtimedate .getmonth(); //獲取當前月份(0-11,0代表1月)
endlogtimedate .getdate(); //獲取當前日(1-31)
endlogtimedate .getday(); //獲取當前星期x(0-6,0代表星期天)
endlogtimedate .gettime(); //獲取當前時間(從1970.1.1開始的毫秒數)
endlogtimedate .gethours(); //獲取當前小時數(0-23)
endlogtimedate .getminutes(); //獲取當前分鐘數(0-59)
endlogtimedate .getseconds(); //獲取當前秒數(0-59)
endlogtimedate .getmilliseconds(); //獲取當前毫秒數(0-999)
endlogtimedate .tolocaledatestring(); //獲取當前日期
var mytime=endlogtimedate .tolocaletimestring(); //獲取當前時間
endlogtimedate .tolocalestring( ); //獲取日期與時間
Python 字串轉換為日期
應用程式接受字串格式的輸入,但是你想將它們轉換為datetime 物件以便在上面執行非字串操作。使用python 的標準模組datetime 可以很容易的解決這個問題。比如 from datetime import datetime text 2012 09 20 y datetime.strpti...
Json字串轉換為JS物件方法
一般json字串轉換為js物件,都使用 var jsonstr var jsonobj eval jsonstr 今天學習jquery原始碼看到一下方法,原來還可以這樣解析json字串 parsejson function data make sure leading trailing whites...
js中字串轉換為日期和比較大小
size large 在做前端校驗的時候,要做日期比較的校驗,在js中把字串轉化為日期,一時之間還真不知道在js中怎麼把乙個字串格式的日期轉化為date,檢視了一些資料,在此分享下。下面以呼叫js中date year,month,day 來生成乙個日期物件。size size large 1.把字串...