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

前端之家收集整理的这篇文章主要介绍了javascript – 如何同时检测按键和鼠标悬停前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
好的,所以我可以使用.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

原文链接:https://www.f2er.com/js/151827.html

猜你在找的JavaScript相关文章