手机端底部输入框被键盘挡住的问题

//浏览器当前的高度
var oHeight = $(document).height();
$(window).resize(function(){
if( $(document).height() < oHeight){
$("#footer").css(“position”,“static”);
}else{
$("#footer").css(“position”,“absolute”);
}
});

你可能感兴趣的:(js)