Byme
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\');

 

分类:

技术点:

相关文章: