$(this).hover(function(event){
    $(this).addClass("cur");
    event.stopPropagation();
    return false;    
},function(event){
    $(this).removeClass("cur");
    event.stopPropagation();
    return false;    
});

相关文章: