解决安卓手机H5页面input获得焦点时键盘遮住输入框

时间:2025-04-05 08:18:16
window.onload = function () { let u = navigator.userAgent; if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) { //判断安卓手机 // 拿到获取焦点的input let input = document.getElementById('myInput') input.addEventListener('focus', function () { setInterval(function () { input.scrollIntoView(true); }, 100) }) } }