正在显示
2 个修改的文件
包含
25 行增加
和
0 行删除
@@ -157,6 +157,27 @@ | @@ -157,6 +157,27 @@ | ||
157 | popup("登录成功") | 157 | popup("登录成功") |
158 | } | 158 | } |
159 | }) | 159 | }) |
160 | + //苹果input自动下滑兼容 | ||
161 | + $("input").blur(function(){ | ||
162 | + setTimeout(function() { | ||
163 | + var scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0; | ||
164 | + window.scrollTo(0, Math.max(scrollHeight - 1, 0)); | ||
165 | + }, 300); | ||
166 | + }) | ||
167 | + //聚焦监听 | ||
168 | + $('input').focus(function() { | ||
169 | + if((/Android/gi).test(navigator.userAgent)) { | ||
170 | + window.addEventListener('resize', function() { | ||
171 | + if(document.activeElement.tagName == 'INPUT' || | ||
172 | + document.activeElement.tagName == 'TEXTAREA') { | ||
173 | + window.setTimeout(function() { | ||
174 | + document.activeElement.scrollIntoViewIfNeeded(); | ||
175 | + }, 0); | ||
176 | + } | ||
177 | + }); | ||
178 | + } | ||
179 | + }) | ||
180 | + | ||
160 | 181 | ||
161 | 182 | ||
162 | 183 |
-
请 注册 或 登录 后发表评论