js两个不同格式的时间做比较

function changeDate(time){  //time 选择时间
     var date=new Date();
     var datenow=formatDate(date,"yyyy.MM.dd hh:mm:ss");   //当前时间
    
     if(Date.parse(time.replace(/\./g,"/"))<Date.parse(datenow.replace(/\./g,"/"))){
         Global.message("选择调容截止时间不能小于当前时间...");
         document.getElementById("enddate").value="";
     }
  }
       
    //格式化日期,
       function formatDate(date,format){
        var paddNum = function(num){
          num += "";
          return num.replace(/^(\d)$/,"0$1");
        }
        //指定格式字符
        var cfg = {
           yyyy : date.getFullYear() //年 : 4位
          ,yy : date.getFullYear().toString().substring(2)//年 : 2位
          ,M  : date.getMonth() + 1  //月 : 如果1位的时候不补0
          ,MM : paddNum(date.getMonth() + 1) //月 : 如果1位的时候补0
          ,d  : date.getDate()   //日 : 如果1位的时候不补0
          ,dd : paddNum(date.getDate())//日 : 如果1位的时候补0
          ,hh : date.getHours()  //时
          ,mm : date.getMinutes() //分
          ,ss : date.getSeconds() //秒
        }
        format || (format = "yyyy.MM.dd hh:mm:ss");
        return format.replace(/([a-z])(\1)*/ig,function(m){return cfg[m];});
      } 

猜你喜欢

转载自a--bian.iteye.com/blog/2122726