当鼠标按钮按下时,gwt 鼠标悬停事件不会触发

发布于 2024-11-05 19:43:00 字数 106 浏览 0 评论 0原文

当您按下鼠标左键时,将触发 mouse down 事件。如果您随后将鼠标移动到标签上(同时按住鼠标按钮),则不会触发鼠标悬停事件。

有什么方法可以启用此事件或手动触发它们或模拟它们?

When you push down the left mouse button mouse down event fires. If you then move the mouse over a label (while holding the mouse button down) mouse over event does not fire.

Is there any way to enable this events or fire them manualy or simulate them?

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

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

发布评论

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

评论(1

凤舞天涯 2024-11-12 19:43:00

您实际上正在做的是两个单独的事件,一个是您所描述的鼠标按下事件,另一个是鼠标拖动事件。

如果您想模拟它们,您可能必须考虑使用鼠标单击来跟踪用户的 (x,y) 位置。随后,如果您想“模拟”它,您可以进行一些计算并自行决定是否确实发生了鼠标单击或鼠标拖动事件。

希望它有帮助:) 干杯!

What you are actually doing is two separate events, one is a mouse down event as you have described and the other is a mouse drag.

If you want to simulate them, that you might have to consider using a mouse click to track the user's (x,y) location. Subsequently, if you want to "simulate" it you could do some computation and decide for yourself if it is indeed a mouse click or mouse drag event that has occurred.

Hope it helps :) Cheers!

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