-JS - 触摸-防止水平滚动

发布于 2025-01-06 08:04:32 字数 218 浏览 1 评论 0原文

我需要防止我的网络应用程序中的水平滚动。我尝试在 touchmove 事件上使用 PreventDefault() ,但它也阻止垂直滚动。

有什么想法吗?^^

我的尝试:

    $(document).bind("touchmove", function(event) {
    event.preventDefault();
});

I need to prevent horizontal scroll in my web app. I tried with preventDefault() on touchmove event but it prevent vertical scroll too.

some idea?^^

my try:

    $(document).bind("touchmove", function(event) {
    event.preventDefault();
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2025-01-13 08:04:32

我看到这样做的唯一方法是手动编码滚动功能,因此将从上面的代码开始以防止默认功能,然后检查事件属性以决定如何滚动页面设置 window.scrollTop 适当地垂直滚动页面。

The only way I can see doing this is to manually code the scrolling functionality, so will start off with the above code to prevent the default functionality and then inspect the event properties to decide how to scroll the page setting window.scrollTop appropriately to vertically scroll the page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文