我注意到,如果我在按钮上按下鼠标,将鼠标指针从按钮区域移开,然后在不释放按钮的情况下将其返回,它仍然记得我在按钮上“按下了鼠标”.
我正在尝试适当地设置按钮样式,有人可以启发我作为用于此目的的正确JavaScript / jQuery事件吗?
我真的很讨厌为此使用某种计数器.
编辑:确定当前的hacky解决方案;
全局调用热键
$('.thisbutton').onmouseenter{if (hotbutton='thisbutton'){drawmousedowntheme();}}
$('.thisbutton').onmousedown{hotbutton='thisbutton';drawmousedowntheme();}
$(document).onmouseup{hotbutton=''}
最佳答案
原文链接:https://www.f2er.com/jquery/530991.html