javascript
GQ_cyan
怀揣着大神梦的菜鸟小白(2016),慢慢长大(2020) 【承接网站,小程序,H5等一系列前端相关外包】
展开
-
// 获取起始日期获取周以及对应日期段
formatDig (num) { return num > 9 ? '' + num : '0' + num }, formatDate (mill) { var y = new Date(mill) let raws = [ y.getFullYear(), this.formatDig(y....原创 2019-11-14 09:19:38 · 297 阅读 · 0 评论 -
获取某年第几周
isLeapYear (year) { return (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0) }, getMonthDays (year, month) { return [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 3...原创 2019-11-14 09:18:24 · 300 阅读 · 0 评论 -
系统整理javascript---1
1,数据类型: ecmascript中数据类型:(5中基本数据类型)Undefined,Null,Boolean,Number,String.(1中较为复杂)Object 2,操作符typeof: 检验:undefined , boolean ,string ,number , object (对象和null) , function 3,类型 3.1 undefined:var定义而未被原创 2017-05-09 20:49:20 · 403 阅读 · 0 评论 -
JS的一个封装和继承知识
面向对象的封装 html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> *{原创 2018-10-19 16:53:07 · 267 阅读 · 0 评论