摘要:
1 /** 2 * checkDate 3 */ 4 function DTO_checkDate(dateStr,format){ 5 if(dateStr == null || dateStr == "" ) return true; 6 if(dateStr.length != format.length){ 7 8 return false; 9 } 10 var year,month,day,hour,minute,second; 11 switch (format) { 1...
阅读全文