记录移动端html界面中底部输入框触发焦点时键盘会把输入框遮挡的问题
//浏览器当前的高度
var oHeight = $(document).height();
//监听窗口大小的时候动态改变底部输入框控制器的定位
$(window).resize(function(){
if($(document).height() < oHeight)
{
$("#footer").css("position","static");
}
else{
$("#footer").css("position","absolute");
}
});