jquery hover事件冒泡解决方法

$(this).hover(function(event){

$(this).addClass("cur");

event.stopPropagation();

return false;

},function(event){

$(this).removeClass("cur");

event.stopPropagation();

return false;

});