1. 短时间,形如 (13:04:06) function isTime(str) { var a = str.match(/^(\d{1,2})(:)?(\d{1,2})\2(\d{1,2})$/); if (a == null) {alert('输入的参数不是时间格式'); return false;} if (a[1]>24 || a[3]>60 || a[4]>60) { alert("时间格式不对"); return false } return true;
NSdate 时间格式 NSTimeInterval 时间间隔 基本单位 秒 NSDateFormatter 时间格式器 用于日期对象的格式化或字符串解析为日期对象 日期格式如下: y 年 M 年中的月份 D 当天是今年的第多少天 d 月份中的天数 F 月份中的周数 E 星期几 a Am/pm H 一天中的小时数(0-23) k 一天中的小时数(1-24) K am/pm 中的小时数(0-11) Number 0 h am/pm 中的小时数(1-12) Number
//把日期转换成时间戳 function get_unix_time(time1){ var newstr = time1.replace(/-/g,'/'); var date = new Date(newstr); var time_str = date.getTime().toString(); return time_str.substr(0, 10);} 一.时间转换时间戳 function transdate(endTime){ var date=new