js獲取當前日期時間

2022-04-21 20:05:51 字數 1200 閱讀 4679

function

getnowformatdate()

if (strdate >= 0 && strdate <= 9)

var currentdate = year + seperator1 + month + seperator1 +strdate;

return

currentdate;

}

呼叫直接獲取當天日期

//

獲取當前日期時間

function

curenttime()

//定時執行settime

setinterval("settime()",1000);

//將id為currenttime的div更新為最新時間

function

settime()

//

根據年月獲取當月第一天日期

function

getstartdate(yearmonthstr)-\d$/.test(yearmonthstr))/.exec(yearmonthstr)[0]; //

獲取年份

var month = /\d$/.exec(yearmonthstr)[0]; //

獲取月份

var d = new date(year, month, 0);

var day = d.getdate(); //

獲取月的天數

return yearmonthstr+'-01';}}

//根據年月獲取當月最後一天日期

function

getenddate(yearmonthstr)-\d$/.test(yearmonthstr))/.exec(yearmonthstr)[0]; //

獲取年份

var month = /\d$/.exec(yearmonthstr)[0]; //

獲取月份

var d = new date(year, month, 0);

var day = d.getdate(); //

獲取月的天數

return yearmonthstr+'-'+day;}}

呼叫,引數為yyyy-mm.

Js獲取當前日期時間

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

JS獲取當前日期時間

var mydate new date var years mydate.getfullyear 從date 物件以四位數字返回年份 var months mydate.getmonth 從date 物件返回月份 0 11 var days mydate.getdate 從date物件返回乙個月中的...

Js獲取當前日期時間

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