关键词:push()方法
push()方法可以接收任意数量的参数,把它们逐个添加到数组的末尾,并返回修改后数组的长度。
eg1:
1 2 3 4 5 6 7 8 9 10
| var arr = []; console.log(arr); console.log("入栈"); arr.push(1); console.log(arr); arr.push(2); console.log(arr); arr.push([3,4]); console.log(arr); console.log(arr.length);
|
eg2:
1 2 3 4 5 6 7 8 9 10
| _calculateHeight(){ let foodList = this.$els.foodsWrapper.getElementsByClassName('food-list-hook'); let height = 0; this.listHeight.push(height); for(let i=0;i<foodList.length;i++) { let item = foodList[i]; height += item.clientHeight; this.listHeight.push(height); } }
|
最后更新时间:
这里可以写作者留言,标签和 hexo 中所有变量及辅助函数等均可调用,示例:
http://yoursite.com/2017/07/24/vue-js学习笔记3-push()方法/