码迷,mamicode.com
首页 > 移动开发 > 详细

ios中getTime()的兼容性问题,获取时间为NaN

时间:2020-03-11 12:39:24      阅读:176      评论:0      收藏:0      [点我收藏+]

标签: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;    
}    

 

 

ios中getTime()的兼容性问题,获取时间为NaN

标签:function   indexof   ios   时间戳   agent   index   top   else   navig   

原文地址:https://www.cnblogs.com/zhuMother/p/12461427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!