【发布时间】:2012-03-15 10:29:18
【问题描述】:
我正在尝试使此功能更好地工作,但我无法找到解决方案。
我想让页面相互淡入淡出。 有什么建议吗?
$('.edit-account').click(function(){
$('#section-wrapper').detach();
$('#inline-cont').load('../my-profile/edit-profile.html #inline_content');
$('#inner-wrap').load('../my-profile/edit-profile.html #section-wrapper', function(){
$('#close-account').click(function() {
$('#section-wrapper').detach();
$('#inline-cont').load('../my-profile/close-account.html #inline_content');
$('#inner-wrap').load('../my-profile/close-account.html #section-wrapper');
});
});
});
【问题讨论】: