android 疑难杂症

2018-06-01  本文已影响0人  MOMOsShare

1.WebView 输入框无法被输入法顶起 。输入法遮挡输入框。

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

}

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

    if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA') {

        window.setTimeout(function () {

            $('.confirm').scrollIntoViewIfNeeded();

        }, 0);

    }

})

2.Dialog内存泄漏

3.加载ios拍的照片 出现旋转exif

图片后缀加"?imageMogr2/auto-orient"

上一篇 下一篇

猜你喜欢

热点阅读