我可以检测按键
$(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