JS
羽吢
you will,my hands!
展开
-
JS中类的继承
学习了ES5中类的继承相关视频,记录一下,先看看准备工作// 第一类人 function PersonTypeOne() { this.name = "王陆"; this.age = "22"; this.run = function () { console....原创 2020-01-14 10:39:02 · 187 阅读 · 0 评论 -
JS时间格式转化问题
此篇专用于我平时遇到的时间格式转化问题,因查找不到出处,所以此处暂为原创,若有更改需要请联系。时间戳格式转化为yy-mm-dd hh-mm-ssformatTime(value) { // 时间戳为10位需*1000,时间戳为13位的话不需乘1000 const date = new Date(value*1000); const Y = date.ge...原创 2019-10-18 09:29:36 · 132 阅读 · 0 评论