移动端h5页面,当软键盘弹出时,会将底部导航footer顶上去,怎么解决???
这个需要你js来判断下
var oHeight = $(document).height(); //浏览器当前的高度
$(window).resize(function(){
if($(document).height() < oHeight){
$("#footer").css("position","static");
}else{
$("#foote...
原创
2020-02-29 14:31:06 ·
855 阅读 ·
1 评论