移动端中input框被键盘遮挡,Android、IOS

511 阅读1分钟

Android手机中,输入框被键盘遮挡可以在input框中加入 cursor-spacing="400",textarea输入框也同样可以适用

<textarea cursor-spacing="400" maxlength="500" auto-focus />

<input type="text" cursor-spacing="400">

ios手机可以适用监听手机型号进行更改输入框的样式

  点击键盘的时候把输入框的高度更改

<input type="text" :class="typeIos?'reply_image2':'reply_image'" @tap.stop="showKeyBoard(true)">

.reply_image{
        width: 90%;
        margin: 30rpx auto;
        height: auto;
}
.reply_image2{
        width: 90%;
        margin: 30rpx auto;
        height: 220rpx;
}