gpt4 book ai didi

javascript - 如何同时检测按键和鼠标悬停

转载 作者:可可西里 更新时间:2023-11-01 01:51:42 25 4
gpt4 key购买 nike

好的,我可以使用 .on('mouseover') 检测鼠标悬停

我可以使用

检测按键
$(document).keypress(function(e) {
console.log(e.which);
}

但是当我按下某个按钮时,我该如何检测我的鼠标悬停在哪个图像上呢?

这个想法是能够通过在将鼠标悬停在图像上时按 d 来删除图像。有什么想法吗?

最佳答案

您只需切换一个类或数据属性即可显示当前悬停在哪个类或数据属性上

$('img').hover(function(){
$(this).toggleClass('active'); // if hovered then it has class active
});
$(document).keypress(function(e) {
if(e.which == 100){
$('.active').remove(); // if d is pressed then remove active image
}
});

FIDDLE

关于javascript - 如何同时检测按键和鼠标悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18108205/

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