解决ios手机H5页面键盘收起后页面上移问题
input失焦后给body设置滚动距离$('input').blur(()=>{var scrollbox = $('body');var sheight = scrollbox.scrollTop();scrollbox.scrollTop(sheight - 10);setTimeout(function(){scrollbox.scrollTop(sheight);},100)})
·
input失焦后给body一个滚动,滚动距离为为页面滚动高度
$('input').blur(()=>{
var scrollbox = $('body');
var sheight = scrollbox.scrollTop();
scrollbox.scrollTop(sheight - 10);
setTimeout(function(){
scrollbox.scrollTop(sheight);
},100)
})
更多推荐
已为社区贡献1条内容
所有评论(0)