jquery鼠标移入移出事件不能添加动画么

2024-12-18 00:54:45
推荐回答(1个)
回答1:

应该是这样写的:$(document).ready(function(){ $("p").mouseover(function(){ $(this).addClass("hove"); },function(){$(this).removeClass("hove");}); });