输出时间
console.time('a')
console.timeEnd('a')
删除对象属性
let a = {b:'1',c:'2'}
delete a.b
获取元素width
this.$els.abc.offsetWidth
push 和 concat的区别
concat不改变原数组,返回新数组,push直接在原数组后面加上
限制输入框只能输入数字
通过onkeypress事件是输不上任何非数字字符
<input type="text" onkeypress="return event.keyCode>=48&&event.keyCode<=57" />
通过onkeyup事件是输上后再去掉非数字字符
<input type="text" onkeyup="value=value.replace(/[^\d]/g,'') ">