摘要:let data = [ { "list": [ { "colorNum":0, "endTime":"2018-08-04 08:00:00", 'type': 'new', "item":"item1", "quantity":1960, "startTime":"2018-08-02 8:00
阅读全文
10 2020 档案
摘要:右下setting, 搜索setting.json { "editor.fontSize": 14, "editor.tabSize": 4, "editor.detectIndentation": true, "update.mode": "none", "editor.formatOnSave"
阅读全文
摘要:git出现CAPTCHA require,我是因为git账号输入了错误的密码导致不能clone; 打开“控制面板”,输入地址即可 “Control Panel\User Accounts\Credential Manager” 把那个删除了就ok了。
阅读全文
摘要:<!DOCTYPE html> <html> <head> <title>a</title> <meta name="content-type" content="text/html; charset=UTF-8"> <style> span { display: block; width: 30p
阅读全文
摘要:连续操作:两个操作之间的时间间隔小于设定的阀值,这样子的一连串操作视为连续操作。 debounce(防抖):一个连续操作中的处理,只触发一次,从而实现防抖动。throttle:一个连续操作中的处理,按照阀值时间间隔进行触发,从而实现节流。 发生的情况: a、scroll事件:当页面发生滚动时,scr
阅读全文
摘要:function isString(obj) { return Object.prototype.toString.call(obj) '[object String]'; } function isObject(obj) { return Object.prototype.toString.cal
阅读全文
摘要:# http://editorconfig.org root = true # 对所有文件生效 [*] # utf-8编码 charset = utf-8 # 空格形式缩进 indent_style = space indent_size = 4 # 使用单引号 quote_type = singl
阅读全文