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.
我一直试图阻止我的网页滚动,这在桌面浏览器上很容易溢出:隐藏;但这在我的 android 选项卡上不起作用,无论我做什么,它似乎都在继续滚动。我在滚动时玩过 preventDefault ,但这似乎根本不起作用。
干杯
这应该有效:
document.ontouchmove = function(event){ event.preventDefault(); }