行到水穷处,坐看云起时。
常用功能 常用功能
本文是在工作中收集到实用并且常用的功能,仅供学习参考使用 1. 数组去重/*** *@desc: 数组去重 */ const array = [' ', 1, 2, ' ',' ', 3]; ​ // 1: "Set" [...new
2020-04-20
弹窗之后禁止页面滚动 弹窗之后禁止页面滚动
let bodyEl = document.body let top = 0 function stopBodyScroll (isFixed) { if (isFixed) { top = window.scrollY
2018-11-05