注意。html,高度设置为100%
window.addEventListener("resize", function() {
if (document.activeElement.tagName == "INPUT" || document.activeElement.tagName == "TEXTAREA") {
// window.setTimeout(function() {
// document.activeElement.scrollIntoView();
// }, 200);
var h = document.documentElement.scrollHeight || document.body.scrollHeight;
window.scrollTo(h, h);
}
})
缺点
没有动画效果看起来比较生硬