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"
网友评论