$('#thumbs li a').click(function(){
var toLoad = $(this).attr('href')+' #content';
$('#content').hide('fast',loadContent);
$('#load').remove();
$('#wrapper').append('<span id="load">LOADING...</span>');
$('#load').fadeIn('normal');
function loadContent() {
$('#content').load(toLoad,'',showNewContent());
}
function showNewContent() {
$('#content').show('normal',hideLoader());
}
function hideLoader() {
$('#load').fadeOut('normal');
}
return false;
});
每个 a href 都链接到与 index.html 位于同一目录中的 html 文件。所以我不太确定为什么它没有从#content 中检索内容。我已确保所有 html 文件也具有相同的 ID。