uniapp解决输入框被软键盘覆盖的问题

使用普通input标签

直接添加cursorSpacing属性即可

<input cursorSpacing="10"></input>

指定光标与键盘的距离,单位 px 。取 input 距离底部的距离和 cursor-spacing 指定的距离的最小值作为光标与键盘的距离

使用uview中的input标签

uview中已经封装了此属性,直接设置即可

<u-input cursor-spacing="10"></u-input>

在这里插入图片描述

注意: uview中的u-seach标签添加此属性无效

你可能感兴趣的:(前端,Web)