day js获取当前时间
var now = new Date(); var hours = now.getHours(); var minutes = now.getMinutes(); var seconds = now.getSeconds(); var time = hours + ':' + minutes + ':' + seconds; console.log(time);
原文地址: https://www.cveoy.top/t/topic/byl4 著作权归作者所有。请勿转载和采集!