當(dāng)軟鍵盤彈出時(shí)隱藏footer。
js代碼如下:
$("body").find("input[type=text]").each(function() {
$(this).bind('focus', function() {
$('#footer').css('display', 'none');
}).bind('blur', function() {
$('#footer').css({
'position': 'fixed',
'bottom': '0'
});
var footer = $('#footer');
var display = footer.css('display');
if (display == 'none') {
footer.show();
} else {
footer.hide();
}
});
});