当鼠标超出控制范围时禁用页面滚动?

发布于 2024-12-09 17:17:23 字数 216 浏览 1 评论 0原文

我正在创建一个 ASP.NET 应用程序。

在网页中我有一个谷歌地图控件。我使用鼠标滚轮放大/缩小地图。

但是,当我使用鼠标滚轮时,不仅地图会放大/缩小,而且页面也会向下/向上滚动。

当鼠标悬停在地图控件上时,如何禁用鼠标滚轮向下/向上滚动页面?

当鼠标超出控制范围时,我仍然希望能够向下滚动页面。

非常感谢您的帮助。 我希望我说清楚了。

I am creating an ASP.NET Application.

In a webpage I have a Google map control. I use the mouse wheel to zoom in/out in the map.

But when I use the mouse wheel not only the map zoom in/out but the page also scroll down/up.

How to disable scroll down/up of the page with mouse wheel when the mouse is over the map control?

I still want to be able to scrolldown the page when the mouse is outside the control.

Thank you very much for any help.
I hope I was clear.

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

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

发布评论

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

评论(1

神回复 2024-12-16 17:17:23

在你所说的谷歌地图上的鼠标滚轮上,你有一个关于鼠标滚轮的事件处理程序。只需添加此内容即可。

 args.PreventDefault();

On your mousewheel on the googlemap you say you have, you have an event handler about mousewheel. Just add this and you will be on your way.

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