微信小程序----键盘弹出挡住输入框问题解决方案

微信小程序键盘弹出挡住输入框问题解决方案

问题:微信小程序聊天输入框点击后,键盘弹出挡住输入框

微信小程序----键盘弹出挡住输入框问题解决方案_第1张图片

解决办法:

  • 1、给输入框添加一个 bindkeyboardheightchange 事件,获取键盘的高度

在这里插入图片描述

  getKeyBoardHeight(event:any){
    let height = event?.detail?.height || 0
    this.setData({
      KeyBoardHeight:height
    })
  },
  • 2、给发送消息的盒子一个bottom bottom为监听到的键盘的高度

     .send-msg {
        display: flex;
        align-items: flex-end;
        padding: 16rpx 30rpx;
        width: 100%;
        min-height: 177rpx;
        position: fixed;
        bottom: 0;
        background: #f7f8f7;
      }
    
     <view class="send-msg" style="bottom: {{KeyBoardHeight}}px;">
        <view class="chat-textarea">
          <textarea wx:if="{{isTypeText}}" model:value="{{chatMsg}}" maxlength="300" :show-confirm-bar="false" auto-height bind:input="inputValue" bindkeyboardheightchange="getKeyBoardHeight" >textarea>
        view>
      view>
    

    效果图:

微信小程序----键盘弹出挡住输入框问题解决方案_第2张图片

你可能感兴趣的:(微信小程序,微信小程序,小程序)