1 js中得到年月日,時分秒是通過不同的方法來分別得到。
得到年:getfullyear()
得到月:getmonth()
得到日:getdate()
得到時:gethours()
得到分:getminutes()
得到秒:getseconds()
得到毫秒:getmilliseconds()
記得得到的月是從0開始的,所有需要加1.
如:var date=new date();
var year=date.getfullyear();
var month=date.getmonth()+1;
var day=date.getdate();
var string_date=year+"-"+month+"-"+day;
var hh=date.gethours();
var mm=date.getminutes();
var ss=date.getseconds();
string_date=date.gethours()+":"+date.getminutes()+":"+date.getseconds();
var ff=date.getmilliseconds();
var string_date_=date.getfullyear()+"-"+date.getmonth()+"-"+date.getdate()+" "+date.gethours()+":"+date.getminutes()+":"+date.getseconds()+" "+date.getmilliseconds();
alert(string_date_);
獲取年月日時分秒
calendar ca calendar.getinstance int year ca.get calendar.year 獲取年份 2016 system.out.println year int month ca.get calendar.month 獲取月份 10 1 system.out....
python年月日時分秒
通過datetime函式獲取 import datetime 取當前時間 print datetime.datetime.now 取年 print datetime.datetime.now year 取月 print datetime.datetime.now month 取日 print dat...
輸入年月日時分秒,輸出該年月日時分秒的下一秒
編寫乙個函式,要求輸入年月日時分秒,輸出該年月日時分秒的下一秒。如輸入2004年12月31日23時59分59秒,則輸出2005年1月1日0時0分0秒 考慮如何幾種情形 演算法思路 1 判斷現在月份是大月還是小月 大月 1月,3月,5月,7月,8月,10月,12月 31天 小月 2月 28天或者29天...