var winHeight = $(window).height();
$(window).resize(function () {
var thisHeight = $(this).height();
if (winHeight - thisHeight > 50) {
setTimeout(function () { window.scrollTo(0, document.body.scrollHeight); }, 300) // 滚动条加载到底部;
} else {
//窗口发生改变(小),故此时键盘收起
//当软键盘收起,在此处操作
}
});
手机弹出键盘 窗口改变事件
Posted 模糊的星空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手机弹出键盘 窗口改变事件相关的知识,希望对你有一定的参考价值。
以上是关于手机弹出键盘 窗口改变事件的主要内容,如果未能解决你的问题,请参考以下文章