ios移动端input输入内容时向上偏移

 

$(document).on('blur', 'input', function () {undefined
            setTimeout(function () {undefined
                var scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
                window.scrollTo(0, Math.max(scrollHeight - 1, 0));
            }, 100);
        });

 

上一篇:Elastic-Job 配置介绍


下一篇:一些常用运算符