这是网站:http ://designsweeter.com/ 它适用于除 IE 之外的所有浏览器(任何版本,包括 9)。我正在使用 jQuery、Modernizr 和 slidesJs。但我的 javascript 都没有工作。任何线索为什么?这是 js 文件:http ://designsweeter.com/scripts.js
未缩小(它们在我的 js 文件中的顺序相同):
modernizr:http ://www.modernizr.com/downloads/modernizr-2.0.6.js jquery 1.6:http ://code.jquery.com/jquery-1.6.1.js jquery 缓动:http://gsgd。 co.uk/sandbox/jquery/easing/jquery.easing.1.3.js slidesjs:http ://designsweeter.com/non-packed-js/slides.js jQuery 平滑滚动:
$(document).ready(function() {
$("a.topLink").click(function() {
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top + "px"
}, {
duration: 500,
easing: "swing"
});
return false;
});
});
谢谢!