• 2023-04-16React onBlur回调中使用document.activeElement返回body解决方案
    最开始想实现一个功能,点击img图标后给出购物下拉框CartDropdown,当img及CartDropdown失去焦点时隐藏CartDropdown。最开始的核心代码如下:exportdefaultfunctionCart(){ const[isCartOpen,setIsCartOpen]=useState(false) functionclickHandler(){ setIsCartOpen(
  • 2022-10-18document.activeElement
    document.activeElement获取当前获得焦点的元素:IE:document.activeElement可获得所有聚焦的元素,包括input、textarea、div等。IE只关心光标聚焦的位置,不关心聚焦元素的性
  • 2022-08-25原生js解决ios手机input输入框弹出覆盖问题
    背景:软键盘弹起挡住input框软键盘弹起页面布局乱掉安卓手机+界面父级组件使用了overflow:hidden导致键盘弹出(页面本质上变小了)仍然不可滚动解决思路:父级别不要使用ove