摘要:
交换两个变量 多条件检查 字符串转换为数字 多次重复一个字符串 双非位运算符(~~ 最大值和最小值 7. 时间对象转成时间戳(不需要moment) Number(new Date()) //1624616981955 阅读全文
摘要:
(1)阻止用户缩放 <meta http-equiv="X-UA-Compatible" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"> (2)定位样式失效 首先将需要滚动的内容放在 阅读全文
摘要:
监听resize事件,计算位置并滚动页面到一定距离 window.onresize = function(){ // 计算输入框离窗口顶部的距离 let toTop = document.activeElement.getBoundingClientRect().top; // 滚动页面 使输入框距 阅读全文