在我的iPhone和Android应用中,页眉和页脚未修复。当我专注于输入框时,页眉和页脚不会固定在它们的位置。他们离开了他们的位置并变得可滚动。目前我正在使用:
$("[data-role=header] [data-role=footer]").css("position", "fixed");
但它似乎不起作用。
任何建议都会有很大的帮助。
答案 0 :(得分:1)
试试这个
$("[data-role=header],[data-role=footer]").css("position", "fixed");
或强>
$("[data-role=header]").css("position", "fixed");
$("[data-role=footer]").css("position", "fixed");
答案 1 :(得分:0)
尝试使用:
$("[data-role=header]").css("position", "fixed");
$("[data-role=footer]").css("position", "fixed");
或在其间添加,
。