问题是这样的input ,textarea获取焦点时会自动调起手机键盘,设置 :adjust-position=“true”,和不设置都会导致键盘弹起时页面整体上移
问题分析
input 获取焦点时会自动调起手机键盘,设置 :adjust-position=“true”,会导致键盘弹起时页面整体上移思路:
设置使键盘弹起使页面不上移
设置输入框所在盒子为绝对定位
键盘弹起时获取键盘高度
设置输入框所在盒子的bottom的键盘高度文章来源:https://www.toymoban.com/news/detail-508296.html解決方案
:adjust-position=“false”文章来源地址https://www.toymoban.com/news/detail-508296.html
<textarea
class="flex buyer_input_fd2_0"
confirm-type="done"
:placeholder="'说出你的问题,已购买的人会帮你解答哦~'"
:maxlength="180"
:show-num="true"
placeholder-style="color:#999;font-size:28rpx"
v-model="content"
:adjust-position="false"
/>
到了这里,关于解决uni-app微信小程序input,textarea输入框在底部时,键盘弹起页面整体上移问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!