1. 程式人生 > >JQuery 字串轉時間格式

JQuery 字串轉時間格式

  //字串轉時間格式
      function getDate(strDate) {  
            var date = eval('new Date(' + strDate.replace(/\d+(?=-[^-]+$)/,  
             function (a) { return parseInt(a, 10) - 1; }).match(/\d+/g) + ')');  
            return date;  
        }