测试地址:http://www.yitianyishu.com/ed...
用ios打开测试,文本框获得焦点时,有很大几率导致整个页面上移了一部分,导致头部的工具栏被遮挡了。Android则下正常。
还有一个问题,IOS中在页面的body上滑动时,顶部的系统url显示栏目会存在缩放现象(页面向上活动时,url栏目会变小,下移时则又变大,有没有方法固定一下大小)。
求各位指教
黄舟2017-04-11 12:03:47
function androidInputBugFix(){
// .container 设置了 overflow 属性, 导致 Android 手机下输入框获取焦点时, 输入法挡住输入框的 bug
// 相关 issue: https://github.com/weui/weui/issues/15
// 解决方法:
// 0. .container 去掉 overflow 属性, 但此 demo 下会引发别的问题
// 1. 参考 http://stackoverflow.com/questions/23757345/android-does-not-correctly-scroll-on-input-focus-if-not-body-element
// Android 手机下, input 或 textarea 元素聚焦时, 主动滚一把
if (/Android/gi.test(navigator.userAgent)) {
window.addEventListener('resize', function () {
if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA') {
window.setTimeout(function () {
document.activeElement.scrollIntoViewIfNeeded();
}, 0);
}
})
}
}
在ios里面,当一个文本框的样式为fixed时候,如果这个文本框获得焦点,它的位置就会乱掉,由于ios里面做了自适应居中,这个fixed的文本框会跑到页面中间。