jQuery('#test .track, :not(.btn)').mousemove(function(e){
var el = e.target;
jQuery(el).mouseover(function (e) {
e.stopPropagation();
jQuery(this).addClass('highlight');
jQuery(this).click(function(){
jQuery('.active').removeClass('active');
show_data(this); // a small function for showing this class, css
})
}).mouseout(function () {
jQuery(this).removeClass('highlight');
});
});
连续单击时,此代码会使我的 Firefox 崩溃。我正在使用此代码突出显示鼠标下的当前 DOM 元素。