摘要:
1.最近在使用split函数切割一个以空格为分隔符的字符串时,发现切出的长度和预期的长度不一致!! let str = "hellow world!" //注意hellow与world之前有两个空格 console.log(str.trim().split(" ")) console.log(str 阅读全文
摘要:
浏览器标签页被隐藏或显示的时候会触发visibilitychange事件。 document.hidden为true时为隐藏时触发,false时为显示时触发 document.addEventListener("visibilitychange", function() { console.log( 阅读全文
摘要:
时间转换时间戳 date.valueOf(); 时间戳转化为时分秒 function formatDateTime(date) { //之间转换格式 var y = date.getFullYear(); var m = date.getMonth() + 1; m = m < 10 ? ('0' 阅读全文