ajax 请求 $.ajax(url,[settings]) $.get(url,[data],[fn],[type]) $.getJSON(url,[data],[fn]) $.getScript(url,[callback]) $.post(url,[data],[fn],[type]) aja ...
分类:
Web程序 时间:
2020-03-31 15:58:58
阅读次数:
99
先做个热身 //递归:函数执行的时候自己调用自己 // function fn(){ // fn(); //Uncaught RangeError: Maximum call stack size exceeded // 这种死递归会导致栈溢出 // } // fn(); // function f ...
分类:
编程语言 时间:
2020-03-31 12:16:24
阅读次数:
77
关于this指向问题的讨论一直是学习js不可忽视的重要部分,那些一个又一个围绕this挖的笔试坑,仿佛永远也填不完 var obj={ fn:function(){ console.log(this); } } obj.fn();//object 以上这段代码是再浅显不过的this指向问题,也就是谁 ...
分类:
其他好文 时间:
2020-03-27 00:49:27
阅读次数:
56
好久没写题目了,最近C语言也快忘得差不多了,要孰能生巧 1. def fn(m, n): sum=res=0 for i in range(1, n+1): sum=sum+m m=m*10 res=res+sum return res 2. 我以为我看懂题目了,其实没有 def isPrime(n ...
分类:
编程语言 时间:
2020-03-26 01:02:54
阅读次数:
159
有这么一段代码经常会出现在代码中 1 var pubsub = (()=>{ 2 var topics = {}; 3 function subscribe(topic,fn){ 4 if(!topics[topic]){ 5 topics[topic] = []; 6 } 7 topics[top ...
分类:
其他好文 时间:
2020-03-24 16:03:57
阅读次数:
74
无论是小程序端还是PC端;我们在点击的时候都有可能会连续点击,不断地请求接口,增加http的请求,这样会极大度的浪费性能 这个时候我们就用到 函数节流 我们在utils 文件夹的utils.js 创建 函数节流 /*函数节流*/ function throttle(fn, interval) { v ...
分类:
微信 时间:
2020-03-24 16:01:07
阅读次数:
128
Function.prototype.mycall = function() { const [context,...args] = arguments context = context||window context.__proto__.fn = this context.fn(...args) ...
分类:
移动开发 时间:
2020-03-24 12:32:48
阅读次数:
69
vue中 关于$emit的用法 1、父组件可以使用 props 把数据传给子组件。2、子组件可以使用 $emit 触发父组件的自定义事件。 vm.$emit( event, arg ) //触发当前实例上的事件 vm.$on( event, fn );//监听event事件后运行 fn; 例如:子组 ...
分类:
其他好文 时间:
2020-03-24 10:39:54
阅读次数:
59
学习链接http://stu.ityxb.com/openCourses/detail/238 什么是爬虫: 网络爬虫就是模拟浏览器发送网络请求 接受请求响应 按照一定规则 自动抓取互联网信息的程序 爬虫的用途: 数据采集(百度新闻,今日头条)、12306抢票、网络自动投票、 调试工具: Fn+ F ...
分类:
其他好文 时间:
2020-03-22 19:48:47
阅读次数:
161
// 闭包:自由变量的查找,是在函数定义的地方,向上级作用域查找 , 不是在执行的地方!!! // 函数作为返回值 function create(){ let a =100; return function(){ console.log(a) } } const fn = create(); co ...
分类:
其他好文 时间:
2020-03-20 17:17:23
阅读次数:
53