移动端Android软键盘遮住输入框解决!
Posted 前段入门菜鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端Android软键盘遮住输入框解决!相关的知识,希望对你有一定的参考价值。
在使用vue的情况下,在输入框中添加
<textarea class="textarea" @click="isandroid" :maxlength="30" :rows="1" placeholder="订单备注(30字以内)" v-model="remark"></textarea>
isAndroid(){if(/Android [4-6]/.test(navigator.appVersion)) { window.addEventListener("resize", function() { if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") { window.setTimeout(function() { document.activeElement.scrollIntoViewIfNeeded(); },0); } }) } }
以上是关于移动端Android软键盘遮住输入框解决!的主要内容,如果未能解决你的问题,请参考以下文章
Vue全家桶开发Android和IOS移动端应用常见问题解决