赞
踩
1,业务需求,当手机输入内容时会弹出系统默认的软件盘,此时可能导致其他整体的页面内容上移而覆盖到工具栏或者软件盘直接覆盖了底部的部分内容;
要解决此问题,小编尝试了很多方法均不能完全解决,以下是小编用的最好的方法;
视图部分代码
- <view>
- <!-- #ifdef APP-PLUS -->
- <textarea maxlength="1000"
- :adjust-position="false"
- :show-confirm-bar ='false'
- :confirm-hold="true"
- :cursor-spacing="10"
- :adjust-keyboard-to="'bottom'"
- v-model="questionText"
- @focus="focusText($event)"
- @blur="blurText($event)"
- @bindblur="blurText($event)"
- @bindkeyboardheightchange="blurTextComp($event)"
- ></textarea>
- <!-- #endif -->
- <!-- #ifdef H5 -->
- <textarea maxlength="1000" v-model="questionText"></textarea>
- <!-- #endif -->
- </view>
逻辑部分代码</
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。