js操作當前時間

2022-08-16 10:27:13 字數 761 閱讀 2988

1.獲取當前時間

var now = new date();

var fullyear = now.getfullyear();//獲取格式為20190809

var year = now.getyear();//獲取年份

var month = now.getmonth();//獲取月份從0開始,1月為0,8月為7

var day = now.getdate();//獲取日(1-31)

var date1 = now.getdate();//獲取星期,0代表星期日

var hour = now.gethours();//獲取小時(0-23)

var minute = now.getminutes();;// 獲取分鐘

var second = now.getseconds();//獲取秒鐘

now.tolocaledatestring(); //獲取當前日期,格式為2019/8/9

now.tolocaletimestring();//獲取當前時間,格式為 下午5:01:36

now.tolocalestring();//獲取當前日期與時間

now.gettime();// 方法可返回距 1970 年 1 月 1 日之間的毫秒數

2.設定時間與日期

呼叫對應的set方法即可,如:

var now = new date();

now.setmonth(11);//設定月份為11月

js對當前時間的相關操作

js中獲得當前時間是年份和月份,形如 201208 獲取完整的日期 var date new date var year date.getfullyear var month date.getmonth 1 month month 10 0 month month var mydate year.t...

js獲取當前時間,js時間函式

js獲取當前日期時間及其它操作,js時間函式 var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdat...

js 獲取當前時間

js中獲得當前時間是年份和月份,形如 201208 獲取完整的日期 var date new date var year date.getfullyear var month date.getmonth 1 month month 10 0 month month var mydate year.t...