gpt4 book ai didi

javascript - 什么鼠标事件?

转载 作者:行者123 更新时间:2023-11-29 10:54:45 25 4
gpt4 key购买 nike

我注意到,如果我在按钮上按下鼠标,将指针从按钮区域移开,然后在不松开按钮的情况下返回到它,它仍然记得我在按钮上“按下鼠标”。

我正在尝试适本地设置按钮样式,任何人都可以告诉我正确的 JavaScript/jQuery 事件可以用于此吗?

我真的不想为此使用某种计数器。

编辑:好的当前 hacky 解决方案;

全局调用hotbutton

   $('.thisbutton').onmouseenter{if (hotbutton='thisbutton'){drawmousedowntheme();}} 

$('.thisbutton').onmousedown{hotbutton='thisbutton';drawmousedowntheme();}

$(document).onmouseup{hotbutton=''}

最佳答案

我做的是:

  • 在鼠标悬停处理程序中添加样式(“hot”);
  • 在 mousedown 处理程序中添加另一种样式(“active”);
  • 删除 mouseup 处理程序中的“active”;
  • 删除 mouseout 处理程序中的“active”和“hot”

我总是绑定(bind)到“点击”的实际重要内容。

关于javascript - 什么鼠标事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2351025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com