您调用 script.js 两次,我建议将第一个从标题中取出。您还应该将 jquery 函数放在文档就绪函数中。
例如
$(document).ready(function() {
$(this).css("display", "block");
//Fade in
$("body").fadeIn(2000, function () {
notify("My page is currently being changed. Expect brokenness.");
$("article").fadeIn(1000);
});
//Link fades
$("nav a").hover(function () {$(this).fadeTo(300,1)},function () {$(this).fadeTo(300,.3)});
//notifications
function notify(message) {
document.getElementById("notifyText").innerHTML = message;
$("#notification").fadeIn(500).fadeOut(4000);
}
//fade new content
function fadeLoad(newUrl) {
$("article").fadeOut(1000,function () {
$("article").load(newUrl, function () {
$("article").fadeIn(1000);
});
})
}
});