[size=large]
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( ); //獲取日期與時間
[/size]
oracle 用interval 求時間
指定的時間加上一分鐘 select to char to date 2011 11 09 15 30 30 yyyy mm dd hh24 mi ss 1 1440 yyyy mm dd hh24 mi ss as newdate from dual 兩個時間相減 select to date 20...
關於Python中interval的處理
最近在對幾個取值範圍做處理時發現很麻煩,需要判斷左右,需要判斷開閉合,料想強大的python一定有人準備 好了這樣的輪子。搜了一下,果不其然,找到了pyinterval這個包。滿心歡喜以為找到正解,發現這個模組過於簡單 可能是我太菜了 連如何表達 開 區間都沒有找到。了,現在不支援了,但是方向是對的...
js中關於時間
1 獲取當前時間 var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 m...