摘要:
target是事件触发的真实元素 currentTarget是事件绑定的元素 事件处理中的this指向的是currentTarget currentTarget和target有时候是同一个元素有时候不是(事件冒泡) 当事件是子元素触发的时候 target是事件触发的元素currentTarget是事 阅读全文
摘要:
可以在router/index.js里面设置结合main.js设置 但是这样在刚打开的时候会有1-2s的差 这个时间段的名字是你的项目名 所以在public/index.html里面直接修改title 这样不会有时间差 阅读全文
摘要:
public/favicon.ico替换调这个图片就可以 名字还是改为之前的那个名字替换图片就好 在public/index.html 看一下图片引用正确即可 阅读全文
摘要:
ES5写法 //index.js var {num}= require('./content.js')num(1+2)//3 //content.jsconst num = function(a,b){ return parseInt(a)+parseInt(b)} module.exports = 阅读全文
摘要:
这段时间做抽奖的转盘,需要实现抽奖转速由快变慢的效果。这就需要在setInterval运行时动态缩短时间间隔来实现。在实际操作中我发现无法改变一个timer的时间间隔,而需要反复的运行,清除,再运行,再清除(定时器)。使用函数表达式和递归实现:var counter = 10; var myFunc 阅读全文
摘要:
上传音频 播放音频 阅读全文
摘要:
<div class="flex-wrap"> ${res.data.morning.map(ele => `<div class="li" time=${ele} onclick="chooseTime(this)"> <div class="item overflow">${ele}</div> 阅读全文
摘要:
1.var obj = {} var b = JSON.stringify(obj) == "{}" console.log(b) //true 2.for in 循环判断 var obj = {}; var b = function() { for(var key in obj) { return 阅读全文
摘要:
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/launchApp.html 阅读全文
摘要:
https://www.cnblogs.com/yunlongaimeng/p/12020632.html 阅读全文