$("p").hover(function(){ $("p").css("background-color","yellow"); //鼠标放上面背景色改变},function(){ $("p").css("background-color","pink"); //鼠标移走面背景色改变});