Last active
May 5, 2021 01:49
-
-
Save Houserqu/7577d3710c25a4a96b3c9730b6fc1f65 to your computer and use it in GitHub Desktop.
浏览器常见问题
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 处理 ios 上输入完页面没有恢复到底部到问题 | |
| function fixIOSInput() { | |
| setTimeout(function () { | |
| var tagName = document.activeElement.tagName.toLowerCase() | |
| if (tagName !== 'input' || tagName !== 'textarea') { | |
| window.document.documentElement.scrollTop = window.document.body.scrollHeight; | |
| } | |
| }, 0) | |
| } | |
| window.addEventListener('focusout', function () { | |
| fixIOSInput(); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment