js 比较两个日期的大小 (js实例-1)

function tab(date1,date2){
    var oDate1 = new Date(date1);
    var oDate2 = new Date(date2);
    if(oDate1.getTime() > oDate2.getTime()){
        console.log('第一个大');
    } else {
        console.log('第二个大');
    }
}
tab('2015-10-10','2015-10-11');

猜你喜欢

转载自blog.csdn.net/huaxiawudi/article/details/82318001