JS 取得當前時間日期

2021-04-12 21:42:01 字數 686 閱讀 1070

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獲取當前時間日期

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...

在XSL中取得當前時間

在xsl 中怎麼顯示當前時間,可以使用微軟的xsl 命名空間定義 一種是url 命名空間命名法 xmlns msxsl http www.w3.org tr wd xsl 一種是urn 命名空間命名法 xmlns msxsl urn schemas microsoft com xslt 具體 如下,...

JS獲取當前時間 日期補0位

建立補0函式 functionp s var clock year if month 10 clock 0 clock month if day 10 clock 0 clock day if hh 10 clock 0 clock hh if mm 10 clock 0 clock mm retu...