h 5ページはAndroidの携帯電話の端でソフトキーボードが弾いてページのレイアウトの解決方法を突くことができます.
525 ワード
ソフトキーボードを呼び出すと、ページの底が突き上げられてページが混乱します.解決:
window.onload = function () {
var pageHeight= $(document).height();
$(window).resize(function () { //ios resize
if ($(document).height() < pageHeight) {
$(".footerContainer").css("position", "static");
} else {
$(".footerContainer").css("position", "fixed"); //adsolute fixed,
}
});
}