在使用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);
         }
        })
    }
 }

 

posted on 2017-09-27 17:41  前端入门菜鸟  阅读(3064)  评论(0编辑  收藏  举报