PHP前端开发

H5制作虚拟键盘时出现输入框遮挡的情况怎么办?

百变鹏仔 2个月前 (10-18) #H5教程
文章标签 遮挡

本文主要介绍了html5 虚拟键盘出现挡住输入框的解决办法。具有很好的参考价值,下面跟着小编一起来看下吧

话不多说,请看代码:

//防止键盘把当前输入框给挡住$$('input[type="text"],textarea').on('click', function () {  var target = this;  setTimeout(function(){        target.scrollIntoViewIfNeeded();   },100);});

部分安卓机型适用。

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);        }    })}