标签:function indexof ios 时间戳 agent index top else navig
获取时间戳
时间格式为:2017-12-12 12:00:00在苹果上获取时间戳有兼容性问题 需要转换成2017/12/12 12:00:00 才可以正确获取到时间戳
var getTime=function(time){ var myDate = new Date(time); var u = navigator.userAgent; var isAndroid = u.indexOf(‘Android‘) > -1 || u.indexOf(‘Adr‘) > -1; //android终端 var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端 if(isiOS){ var t = new Date(time.replace(/-/g,‘/‘)).getTime(); }else{ var t = myDate.getTime(); } return t; }
标签:function indexof ios 时间戳 agent index top else navig
原文地址:https://www.cnblogs.com/zhuMother/p/12461427.html