随笔分类 -  JavaScript

摘要://一般解决方法 let arr = [1,2,3]; for(let i=0; i<arr.length; i++){ if(arr[i]==2){ arr.splice(i, 1); i--; } } //优化解决方法 for(let i=arr.length-1; i>=0; i--){ if(arr[i] == 2){ arr.splice(i,1); } } 阅读全文
posted @ 2019-11-13 14:09 ThisCall 阅读(5523) 评论(0) 推荐(0) 编辑
摘要:onLoad: function(opt) { let that = this; let n = this.data.n; function nowTime() { n++; console.log(n) if (timer) {} if (n > 5 && timer) { clearInterval(timer); } } var timer = setInterval(nowTime, 20 阅读全文
posted @ 2019-10-24 13:58 ThisCall 阅读(107) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/ranyonsue/p/7596347.html 阅读全文
posted @ 2019-09-17 17:28 ThisCall 阅读(439) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/guohu/p/9764869.html 阅读全文
posted @ 2019-09-16 10:28 ThisCall 阅读(212) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/a2164e370e29 https://www.cnblogs.com/zqifa/p/regex-1.html var reg = /^[a-zA-Z]$/;// 这里是 正则表达式,大小写英文字母都可以if (reg.test(userNam 阅读全文
posted @ 2019-08-29 09:31 ThisCall 阅读(93) 评论(0) 推荐(0) 编辑
摘要:function registryToast(){ vue.prototype.$toast=showToast } export default registryToast import './assets/css/icon.css'; function registryToast(){ vue. 阅读全文
posted @ 2019-08-23 16:05 ThisCall 阅读(411) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/Qian123/p/5345298.html 阅读全文
posted @ 2019-08-08 10:11 ThisCall 阅读(3479) 评论(0) 推荐(0) 编辑
摘要:Axios发送请求时params和data的区别 https://www.cnblogs.com/cwzqianduan/p/8675356.html(copy 在使用axios时,注意到配置选项中包含params和data两者,以为他们是相同的,实则不然。 因为params是添加到url的请求字符 阅读全文
posted @ 2019-08-07 11:27 ThisCall 阅读(602) 评论(0) 推荐(1) 编辑
摘要:http://www.imooc.com/learn/1141 阅读全文
posted @ 2019-07-26 13:34 ThisCall 阅读(123) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/hello321/p/7821400.html 阅读全文
posted @ 2019-07-19 12:33 ThisCall 阅读(6581) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/haoxl/p/5267724.html(copy) https://www.cnblogs.com/loveyoume/p/6112044.html(prototype) 1.函数声明 2.函数表达式,又叫函数字面量 两者的区别:解析器会先读取函数声 阅读全文
posted @ 2019-04-29 11:03 ThisCall 阅读(220) 评论(0) 推荐(0) 编辑
摘要:list.findIndex(target => target.sel 指定元素) ,如果找到返回下标,如果没有返回-1 阅读全文
posted @ 2019-04-16 09:31 ThisCall 阅读(787) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/benben513624/article/details/88113459(copy) https://www.cnblogs.com/myfate/p/10600392.html(copy) https://blog.csdn.net/benben513 阅读全文
posted @ 2019-04-10 11:19 ThisCall 阅读(494) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/powertoolsteam/p/top-9-javascript-charting-libraries.html 阅读全文
posted @ 2019-04-09 17:47 ThisCall 阅读(210) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/cencenyue/p/7604651.html(copy) https://www.cnblogs.com/cencenyue/p/7604651.html(copy) 浅谈session,cookie,sessionStorage,localSto 阅读全文
posted @ 2019-04-01 11:42 ThisCall 阅读(264) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/belove8013/p/8134067.html(copy) http://stor.51cto.com/art/201809/584288.html(更深入 1、Cookie JavaScript是运行在客户端的脚本,因此一般是不能够设置Sessi 阅读全文
posted @ 2019-03-26 17:11 ThisCall 阅读(205) 评论(0) 推荐(0) 编辑
摘要:js合并对象-- Object.assign(obj1,obj2) js克隆对象-- var obj = {a:1,b:2} var newObj = JSON.parse(JSON.stringify(obj)); newObj.a=3; console.log(obj); console.log 阅读全文
posted @ 2019-01-08 14:24 ThisCall 阅读(181) 评论(0) 推荐(0) 编辑
摘要:// 获取当前定位 changeCity: function () { let that = this; that.locationClose(); Upj._changeCity().then((data) => { if (data.code) { wx.setStorageSync('city 阅读全文
posted @ 2018-10-26 09:59 ThisCall 阅读(110) 评论(0) 推荐(0) 编辑
摘要:// 函数节流 var canRun = true; document.getElementById("throttle").onscroll = function(){ if(!canRun){ // 判断是否已空闲,如果在执行中,则直接return return; } canRun = fals 阅读全文
posted @ 2018-05-05 15:47 ThisCall 阅读(129) 评论(0) 推荐(0) 编辑
摘要:http://www.hangge.com/blog/cache/detail_1638.html //做饭 function cook(){ console.log('开始做饭。'); var p = new Promise(function(resolve, reject){ //做一些异步操作 阅读全文
posted @ 2018-05-04 13:44 ThisCall 阅读(133) 评论(0) 推荐(0) 编辑