admin管理员组

文章数量:1291744

this is my code:

    var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
var hours = currentTime.getHours()
var minutes = currentTime.getMinutes()

alert(minutes+"/"+hours+"/"+month + "/" + day + "/" + year)

but , i think it hard to pare with two time ,

what can i do ?

thanks

this is my code:

    var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
var hours = currentTime.getHours()
var minutes = currentTime.getMinutes()

alert(minutes+"/"+hours+"/"+month + "/" + day + "/" + year)

but , i think it hard to pare with two time ,

what can i do ?

thanks

Share Improve this question asked Aug 29, 2010 at 15:44 zjm1126zjm1126 35.7k53 gold badges125 silver badges167 bronze badges 1
  • 1 You usually need two quantities in order to perform a parison. So you want to pare the current time to what? – Darin Dimitrov Commented Aug 29, 2010 at 15:46
Add a ment  | 

1 Answer 1

Reset to default 6

If you really want to know whether two Date objects represent precisely the same time, or are before/after one another, it's quite easy: just pare the two Dates via the getTime() method, which returns an integer timestamp for the object. For example,

var date1 = myDate,
    date2 = new Date();
return (date1.getTime() < date2.getTime());

would return true if myDate is before 'now', false if it is now or in the future.

本文标签: javascripthow to get current time and then compare them using jquery Stack Overflow