我有一个无法在我的网站上运行的 jQuery 函数。Firebug 和 Chrome 的检查员都没有报告任何错误。我运行了一个jsfiddle,它在那里工作得很好。关于问题可能是什么的任何想法?我很困惑。
这是我的功能:
$("#totop").hover(
function(){
$(this).stop().animate({height: "50px"}, "slow");
},
function(){
$(this).stop().animate({height: "20px"}, "slow");
}
);
</p>