富贵资源网 Design By www.hznty.com
js new Date() 测试
var t = new Date().toString(); //t = "Thu Oct 31 2019 11:36:57 GMT+0800 (中国标准时间)" var t1 = new Date(); var data_arry =[]; var that = new Date(); data_arry.push(that.constructor()); // Thu Oct 31 2019 11:50:26 GMT+0800 (中国标准时间)" data_arry.push(that.getDate()); //31 data_arry.push(that.getDay()); // 4 data_arry.push(that.getFullYear()); //2019 data_arry.push(that.getHours()); // 11 data_arry.push(that.getMilliseconds()); // 401 data_arry.push(that.getMinutes()); // 50 data_arry.push(that.getMonth()); //9 data_arry.push(that.getSeconds()); //26 data_arry.push(that.getTime()); //1572493826401 data_arry.push(that.getTimezoneOffset()); //-480 data_arry.push(that.getUTCDate()); //31 data_arry.push(that.getUTCDay()); data_arry.push(that.getUTCFullYear()); data_arry.push(that.getUTCHours()); data_arry.push(that.getUTCMilliseconds()); data_arry.push(that.getUTCMinutes()); data_arry.push(that.getUTCMonth()); data_arry.push(that.getUTCSeconds()); data_arry.push(that.getYear()); data_arry.push(that.setDate()); data_arry.push(that.setFullYear()); data_arry.push(that.setHours()); data_arry.push(that.setMilliseconds()); data_arry.push(that.setMinutes()); data_arry.push(that.setMonth()); data_arry.push(that.setSeconds()); data_arry.push(that.setTime()); data_arry.push(that.setUTCDate()); data_arry.push(that.setUTCFullYear()); data_arry.push(that.setUTCHours()); data_arry.push(that.setUTCMilliseconds()); data_arry.push(that.setUTCMinutes()); data_arry.push(that.setUTCMonth()); data_arry.push(that.setUTCSeconds()); data_arry.push(that.setYear()); data_arry.push(that.toDateString()); data_arry.push(that.toGMTString()); //data_arry.push(that.toISOString()); 报错 data_arry.push(that.toJSON()); data_arry.push(that.toLocaleDateString()); data_arry.push(that.toLocaleString()); data_arry.push(that.toLocaleTimeString()); data_arry.push(that.toString()); data_arry.push(that.toTimeString()); data_arry.push(that.toUTCString()); data_arry.push(that.valueOf());
函数
function get_nowtime() { var date = new Date(); return (date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate()); } console.log(get_nowtime());
扩展阅读:
JS获取当前时间戳的方法-JavaScript 获取当前时间戳
JavaScript 获取当前时间戳:
第一种方法:
var timestamp =Date.parse(new Date());
结果:1280977330000
第二种方法:
var timestamp =(new Date()).valueOf();
结果:1280977330748
第三种方法:
var timestamp=new Date().getTime();
结果:1280977330748
第一种:获取的时间戳是把毫秒改成000显示,
第二种和第三种是获取了当前毫秒的时间戳。
我和同事在用js实现一个显示出分析数据所剩大概时间的过程中,时间总是变给0,结果很怪异,最后发现获取时间的时候用的是Date.parse(newDate())获取的时间戳把毫秒改成了000显示,所以时间差计算的不准确。
可以用第二种或第三种方法计算时间差。
js中单独调用new Date(),例如document.write(new Date());
显示的结果是:Mar 31 10:10:43 UTC+0800 2012 这种格式的时间
但是用new Date() 参与计算会自动转换为从1970.1.1开始的毫秒数
以上就是本次介绍的全部知识点以及扩展内容,感谢大家的学习和对的支持。
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。