草稿 JS中如何操作時間

2022-02-24 17:13:25 字數 576 閱讀 1380

**如下:

1

$(function ()

9var d2 = new date(zhiding.replace(/-/g, '/'

));10

if (d - d2==0) alert('

當前時間等於指定時間');

11else

if (d - d2>0) alert('

當前時間大於指定時間');

12else

if (d - d2<0) alert('

當前時間小於指定時間');

13 })

前三點,一看則明,關於如何比較兩個時間變數,可是吃了大苦頭,之前的**採用的是這種寫法,卻得不到正確的結果:

1

if (d == d2) alert('

當前時間等於指定時間');

2else

if (d > d2) alert('

當前時間大於指定時間');

3else

if (d < d2) alert('

當前時間小於指定時間

');

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 mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 要加1 mydate.getdate 獲取當前日 1 31 mydate...

JS時間操作

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