1、獲取當前時間
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( ); //獲取日期與時間
JS 關於時間 interval
size large var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31...
js關於時間常用的方法
var mydate new date 也可以new date long mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前...
關於js中的then
then 相關的東西包括但不限於 promise,thien.js 雖然還沒徹底搞清楚這些個玩意兒,但是 現在知道了 then 是幹嘛的了 最主要的,是解決了非同步方法立刻返回的問題 這個特性帶來的後遺症 假設 我要等非同步處理完了,再去執行一段 後續 怎麼做?定義乙個全域性flag,非同步處理完成...