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.
我一直在建立一个网站,以便它可以响应 iPhone 和 iPad 等平板电脑,但是我遇到了可点击项目的问题。
例如,我目前有我的导航“位置:固定”,因此无论您向下滚动页面多远,它始终存在。我遇到的问题是在您单击下拉菜单并选择要跳转到的部分后,当我返回选择另一个部分时它不起作用。我必须滚动一点才能激活导航,以便再次单击菜单。
谁能帮帮我?谢谢!
您是否尝试过使用触摸事件?
var ua = navigator.userAgent, event = (ua.match(/iPad/i)) ? "touchstart" : "click"; $("put your selector here").bind(event, function(e) { });