安卓手机点击input框,会被键盘挡住的问题。

2020-01-06  本文已影响0人  Kemmy_m

解决办法:写个js即可

// 处理安卓手机输入法遮挡输入框问题(摘自WEUI)

    if ((/Android/gi).test(navigator.userAgent)) {

        window.addEventListener('resize', function () {

            if (document.activeElement.tagName == 'INPUT' ||

                document.activeElement.tagName == 'TEXTAREA') {

                window.setTimeout(function () {

                    document.activeElement.scrollIntoViewIfNeeded();

                }, 0);

            }

        });

    }

上一篇 下一篇

猜你喜欢

热点阅读