JS获取系统当前时间
2021-05-17 07:28
阅读:386
标签:var get time 获取 current day date 系统 mon //系统当前时间 JS获取系统当前时间 标签:var get time 获取 current day date 系统 mon 原文地址:http://www.cnblogs.com/shoose/p/7744696.html
var now = new Date();
var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();
var currentime = year + "-" + month + "-" + day;
currentimes = Date.parse(new Date(currentime));
上一篇:JS一个经典闭包问题
下一篇:curl的用法
评论
亲,登录后才可以留言!