我在下面有以下 jQuery,“$.get(page+".php", function(html))" 行出现错误。我正在使用最新的 jQuery 版本。
$(function() {
$("tabs a").click(function() {
$("#tabs li").removeClass("selected");
$(this).parent("li").addClass("selected");
var page = this.hash.substr(1);
$("#content").html("");
$.get(page+".php", function(html)) {
$("#content").html(html);
}
});
if(location.hash) ? $("a[href="+location.hash+"]").click() : $("#tabs a:first").click();
}
});
我正在关注本教程:http ://www.youtube.com/watch?v= nBbkTmQHh3M 那家伙没有收到任何错误。由于存在语法错误,Dreamweaver 会突出显示该行。
提前致谢。