Home > Web Front-end > JS Tutorial > body text

js method to compare date size_javascript skills

WBOY
Release: 2016-05-16 15:59:40
Original
1285 people have browsed it

本文实例讲述了js比较日期大小的方法。分享给大家供大家参考。具体如下:

function DateDiff(d1,d2){
 var result = Date.parse(d1.replace(/-/g,"/"))- Date.parse(d2.replace(/-/g,"/"));
 return result;
}
function DateDiff(d1,d2){    
    start_at = new Date(d1.replace(/^(\d{4})(\d{2})(\d{2})$/,"$1/$2/$3"));
    end_at = new Date(d2.replace(/^(\d{4})(\d{2})(\d{2})$/,"$1/$2/$3"));
    if(start_at > end_at) {
      return false;
    }
    return true;
}
//js获取当前日期
function currentDay(){
 var mydate=new Date();
 var mymonth=mydate.getMonth()+1;
 var myday= mydate.getDate();
 var myyear= mydate.getYear(); 
 mymonth=mymonth<10&#63;"0"+mymonth:mymonth;
 myday=myday<10&#63;"0"+myday:myday;
 var day=myyear+"-"+mymonth+"-"+myday; 
 return day;
}
Copy after login

希望本文所述对大家的javascript程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!