Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您将固定位置的 div 设置为屏幕底部,则该 div 在显示虚拟键盘时不会停留在底部。它会随着页面高度的增加而向上移动。这个问题在 iOS 5 中不会发生,因为 div 继续保持在底部,就像它应该的那样。有什么帮助吗?
您可以在键盘处于活动状态时简单地隐藏固定的 div 吗?
$("#text_field").focus(function(){ $("#fixed_div").hide(); }); $("#text_field").blur(function(){ $("#fixed_div").show(); });