知识体系-js 知识梳理 1. 数据类型基本类型 : number boolean string null undefined bigInt symbol 类型判断 typeof instanceof12var a='11'Object.prototype.toString.call(a);//[object String] 2. 原型、原型链3. new执行了哪些操作4.闭包为什么使用 2020-10-12 前端 js 知识体系
h5常见问题整理 一、 ios 滚动不流畅在滚动元素添加 12overflow-y: auto;-webkit-overflow-scrolling: touch; 二、取消 ios 点击反馈样式在父级添加以下样式解决 1-webkit-tap-highlight-color: rgba(0, 0, 0, 0); 三、ios 输入框不回弹问题通过在 focus,blur 时添加事件监听处理页面滚动来解决 123 2020-09-27 前端 h5 ios safai