Components4Developers has decided to let the world have the opportunity to play with the hundreds of thousands of lines of code, containing thousands ...
分类:
其他好文 时间:
2019-12-26 09:32:24
阅读次数:
95
startTime: '00:00:00', endTime: '23:59:59' //现在时间以后的禁用 getDisabledHours=()=> { let HOURS = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, ...
分类:
其他好文 时间:
2019-12-25 20:21:08
阅读次数:
333
题目描述: 自己的提交: class Solution: def maxFreq(self, s: str, maxLetters: int, minSize: int, maxSize: int) -> int: c = collections.Counter() for i in range(l ...
分类:
其他好文 时间:
2019-12-25 17:47:39
阅读次数:
137
<template> <div class="video_con"> <video controls class="video" ref="video"></video> </div> </template> <script> // npm install hls.js -S let Hls = r ...
分类:
Web程序 时间:
2019-12-25 16:13:44
阅读次数:
295
windows7 机器最大连接数: 1. Win+R运行regedit; 2. 找到HKEY_LOCAL_MACHINESYSTEM\CurrentControlSet\Services\Tcpip\Parameters; 3. 在右侧面板中找到EnableConnectionRateLimitin ...
分类:
其他好文 时间:
2019-12-25 15:55:46
阅读次数:
103
封装的分享方法 1 function share(o,isDebug = false ) { 2 //路径 3 let url = o.url || getCurrentPages()[getCurrentPages().length - 1].route; 4 5 //当前路径所带参数 6 let ...
分类:
微信 时间:
2019-12-25 15:54:22
阅读次数:
134
Vue.directive('scroll', { bind: (el, binding, vnode) => { // 是否执行回调事件 let eventAction = true // 距离底部剩余距离开始触发回调 let distance = 100 // (unit: px) // 监听滚 ...
分类:
其他好文 时间:
2019-12-25 14:33:51
阅读次数:
89
$.each(this.columns, function(i, column) { if (!column.editable) { return; } if (!column.editable.canEdit) { return; } 增加如下代码 ...
分类:
其他好文 时间:
2019-12-25 13:13:30
阅读次数:
352
Google "how many words does a native speaker know" 一、an average of 20,000 to 30,000 vocabulary words ①Even with intensive study, how many words do non ...
分类:
其他好文 时间:
2019-12-25 01:37:36
阅读次数:
178
工厂模式 function createPerson(name, age) { let o = new Object(); o.name = name o.age = age o.say = function() { console.log("name", this.name, "age", thi ...
分类:
Web程序 时间:
2019-12-25 01:17:07
阅读次数:
103