Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Houserqu/7577d3710c25a4a96b3c9730b6fc1f65 to your computer and use it in GitHub Desktop.
Save Houserqu/7577d3710c25a4a96b3c9730b6fc1f65 to your computer and use it in GitHub Desktop.
浏览器常见问题
// 处理 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