- 博客(2)
- 资源 (2)
- 收藏
- 关注
原创 收集的一些web前端面试笔试题笔试(答案)
数组去重 //数组去重 遍历数组 数组区中方法有很多种 es6 提供了 new Set 也可以去重 function unique(arr){ var newarr = [] for(var i = 0; i<arr.length; i++){ if(newarr.indexOf(arr[i]) == -1){ // indexOf newarr.push(arr[i]) } } retu...
2019-11-04 15:58:51
515
1
原创 自制的滚动条
// 简单的一个自制滚动条 function Scroll(options) { this.el_scroll = document.getElementsByClassName(options.scroll)[0] || document.getElementById(options.scroll); this.el_container = document.getElement...
2019-04-13 23:14:38
378
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅