2020年7月2日

摘要: document.domain // 返回当前网站的域名 document.cookie // 获取所有cookie document.title // 当前文档标题 document.URL // 当前文档的地址 // document.location.href 和 window.locatio 阅读全文

posted @ 2020-07-02 15:48 猫头唔食鱼 阅读(183) 评论(0) 推荐(0) 编辑

摘要: num.toFix(n) 把数字四舍五入保留n位小数 var a = 123.789 a.toFixed(2) // 123.79 阅读全文

posted @ 2020-07-02 15:11 猫头唔食鱼 阅读(247) 评论(0) 推荐(0) 编辑

摘要: var date = new Date() console.log(date.getDate()); // 一个月里的第几天 console.log(date.getFullYear()); // 年 console.log(date.getMonth()+1); // 月 console.log( 阅读全文

posted @ 2020-07-02 14:54 猫头唔食鱼 阅读(371) 评论(0) 推荐(0) 编辑

摘要: 使用toLocaleString()方法可以把数字转换千分位格式 var a = 12345678 console.log(a.toLocaleString()) // 12,345,678 阅读全文

posted @ 2020-07-02 11:18 猫头唔食鱼 阅读(355) 评论(0) 推荐(0) 编辑

摘要: +new Date() new Date().valueOf() 这两个方法作用是一样的,得到一串时间戳 阅读全文

posted @ 2020-07-02 11:02 猫头唔食鱼 阅读(348) 评论(0) 推荐(0) 编辑