// 倒计时
daojishi(params) {
let _this = this;
let datetemp = this.servertimes;
let lasttime = Date.parse(datetemp.replace(/-/g,"/"));
// new Date(datetemp).getTime() 为NaN
let nowtime = parseInt(new Date().getTime());
let intDiff =parseInt(lasttime - nowtime); //当前时间 - 预设时间
if(intDiff>0){
intDiff = parseInt(intDiff/1000)
window.setInterval(function () {
var day = 0,hour = 0,minute = 0,second = 0; //默认值
if (intDiff > 0) {
day = Math.floor(intDiff / (60 * 60 * 24));
hour = Math.floor(intDiff / (60 * 60)) - (day * 24);
minute = Math.floor(intDiff / 60) - (day * 24 * 60) - (hour * 60);
second = Math.floor(intDiff) - (day * 24 * 60 * 60) - (hour * 60 * 60) - (minute * 60);
}
if (minute <= 9) minute = '0' + minute;
if (second <= 9) second = '0' + second;
_this.servertime = hour +':'+ minute +':'+ second +" 内上门服务"
intDiff--;
}, 1000);
}else{
_this.servertime = "逾期请联系客服";
}
},

安卓正常 Number.isNaN(new Date("2011/11/11 20:10:10").getTime())    //false

ios中使用 Number.isNaN(new Date("2011/11/11 20:10:10").getTime())    //true

      Number.isNaN(Date.parse("2011-11-11 20:10:10".replace(/-/g,"/"))) //false

综上:在ios中使用时间戳加减使用 Data.parse()转换

最新文章

  1. 《InsideUE4》-4-GamePlay架构(三)WorldContext,GameInstance,Engine
  2. CSS4
  3. centos安装mysql5.6的正确姿态
  4. 夺命雷公狗ThinkPHP项目之----企业网站3之后台栏目页的搭建(百度编辑器的引入)
  5. 火狐和google游览器的 hack独有识别 css
  6. youku的js脚本的工具函数和初始化方法
  7. yw info
  8. VC 实现视图区背景颜色渐变填充
  9. crontab linux
  10. crm使用soap插入下拉框选项
  11. [转]How to compile GDB for iOS!
  12. JavaScript DOM编程艺术-学习笔记(第八章、第九章)
  13. 微信小程序- 生成二维码
  14. session与cookie的区别与联系
  15. MSSQL存储过程--CAST和CONVERT使用区别
  16. webdriver设置浏览器全屏及设置浏览器窗口为特定大小的方法
  17. TOPWAY智能彩色TFT液晶显示模块
  18. 《深入理解Nginx:模块开发与架构解析》读书笔记
  19. Centos7.5 安装高版本Cmake 3.6.2
  20. Extjs4.2x与富文本框编辑器KindEditor的整合

热门文章

  1. 为Python终端提供持久性历史记录
  2. 判断字符串是否为JSON
  3. MVC--MVP?
  4. 什么是URI、URL、URN、URC和Data URI?
  5. 读书笔记---《Docker 技术入门与实践》---为镜像添加SSH服务
  6. php导出csv并保存在服务器,返回csv的文件路径
  7. 召回率、AUC、ROC模型评估指标精要
  8. vue之TodoMVC项目实战
  9. leetcode-132-分割回文串②*
  10. 阿里巴巴持续投入,etcd 正式加入 CNCF