我有以下jQuery代码段:
$('#something').hover(
function () {
$(this).stop().animate({'width':'220px'},1000, 'easeOutExpo').css('overflow','hidden');
$('.faded').stop().fadeTo('slow', 1);
},
function () {
$(this).stop().animate({'width':'40px'},1000, 'easeOutExpo').css('overflow','visible');
$('.faded').stop().fadeTo('slow', 0);
}
);
以下HTML:
< li id="something">< a href="someurl" title="a thing">< span class="faded">some text< /span>< /a>< /li>
这就像我的本地服务器和我的在线服务器上的魅力一样,但在客户端服务器上,这段代码完全被忽略,只有css:hover工作,即使同一.js文件中的其他函数正常工作,就像它一样应该。 所以任何人都可以帮助为什么会这样?