サイトは次のとおりです。http://designsweeter.com/ IE(9を含むすべてのバージョン)を除くすべてのブラウザーで機能します。私はjQuery、Modernizr、slidesJsを使用しています。しかし、私のJavaScriptはどれも機能していません。なぜ手がかりはありますか?これがjsファイルです:http://designsweeter.com/scripts.js
Unminified(私の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 easing:http://gsgd。 co.uk/sandbox/jquery/easing/jquery.easing.1.3.js slidesjs:http ://designsweeter.com/non-packed-js/slides.js jQuery Smooth Scroll:
$(document).ready(function() {
$("a.topLink").click(function() {
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top + "px"
}, {
duration: 500,
easing: "swing"
});
return false;
});
});
ありがとう!