这是一个来自 nettuts 的简单加载脚本,我尝试对其进行修改以满足我的需要。但是我无法在函数 shownewcontent 运行之前发生调整加载元素大小的函数“res”。现在它在可见后会调整大小,这看起来很糟糕。但是,如果我更早地调用该函数,则不会发生任何事情,因为尚未加载内容。
$(document).ready(function() {
var hash = window.location.hash.substr(1);
var href = $('#menu a').each(function(){
var href = $(this).attr('href');
if(hash==href.substr(0,href.length-4)){
var toLoad = hash+'.php #content';
$('#content').load(toLoad);
}
});
$('#menu a').click(function(){
var toLoad = $(this).attr('href')+' #content';
$('#content').hide('slow',loadContent);
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4);
function loadContent() {
$('#content').load(toLoad,'',showNewContent());
}
function showNewContent() {
$('#content').show("0", res)
}
return false;
});
});