**如下:
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 })
前三點,一看則明,關於如何比較兩個時間變數,可是吃了大苦頭,之前的**採用的是這種寫法,卻得不到正確的結果:
1if (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...