码迷,mamicode.com
首页 >  
搜索关键字:let    ( 14348个结果
kbmmw 发布免费社区版
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
antd 之TimePicker设置禁用时间
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
leetcode-168周赛-1297-子串的最大出现次数
题目描述: 自己的提交: 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
使用hls.js播放m3u8视频流
<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
jmeter压测性能优化
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 自定义 滚动条指令
Vue.directive('scroll', { bind: (el, binding, vnode) => { // 是否执行回调事件 let eventAction = true // 距离底部剩余距离开始触发回调 let distance = 100 // (unit: px) // 监听滚 ...
分类:其他好文   时间:2019-12-25 14:33:51    阅读次数:89
bootstrap-table-editable 实现表格行编辑
$.each(this.columns, function(i, column) { if (!column.editable) { return; } if (!column.editable.canEdit) { return; } 增加如下代码 ...
分类:其他好文   时间:2019-12-25 13:13:30    阅读次数:352
009_一个English native speaker掌握多少单词量
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
js 创建对象的几种模式
工厂模式 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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!