美文网首页
四、react 获取键盘的弹出和收起

四、react 获取键盘的弹出和收起

作者: 四月_明朗 | 来源:发表于2021-03-18 16:06 被阅读0次
    import React, { Component } from 'react'
    import { InputItem } from 'antd-mobile'
    
    export default class InputKeyboard extends Component {
      state = {
        clientHeight: 0
      }
    
      componentDidMount() {
        let clientHeight = document.documentElement.clientHeight || document.body.clientHeight
        this.setState({ clientHeight })
        window.addEventListener('resize', this.resize)
      }
    
      componentWillUnmount() {
        window.removeEventListener('resize', this.resize) // 移除监听
      }
    
      resize = () => {
        let clientHeight = document.documentElement.clientHeight || document.body.clientHeight
        if (this.state.clientHeight > clientHeight) { // 键盘弹出
          this.inputClickHandle()
        } else { // 键盘收起
          this.inputBlurHandle()
        }
      }
    
      inputClickHandle = () => {
        // 这里处理键盘弹出的事件
      }
      inputBlurHandle = () => {
        // 这里处理键盘收起的事件
      }
    
      render() {
        return (
          <InputItem
            className='input'
            placeholder="关键字"
            onClick={this.inputClickHandle}
            onBlur={this.inputBlurHandle}
          />
        )
      }
    }
    

    原文链接

    末尾彩蛋

    相关文章

      网友评论

          本文标题:四、react 获取键盘的弹出和收起

          本文链接:https://www.haomeiwen.com/subject/kfcpcltx.html