解决ios软键盘输入框被遮挡问题

        $('.popcomment').children('input[type="text"]').focus();

        var u = navigator.userAgent;
        var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端
        var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
        if(isiOS==true){
            setTimeout(function () {
                document.body.scrollTop = document.body.scrollHeight;
            }, 300);
        }

你可能感兴趣的:(解决ios软键盘输入框被遮挡问题)