我想在 slideUp 函数之后而不是之前加载文件(使用 href 变量)。
我的代码:
$(document).ready(function() {
$("#content").show().load($(".link2:first").attr('href'));
$(".link").click(function() {
var href = $(this).attr('href');
$("#content").slideUp("slow");
$("#content").slideDown("slow").load(href);
return false;
});
});
和 HTML:
<a href="testar2.html" class="link">Link 1</a>
<a href="testar.html" class="link">Link 2</a>
<div id="content">-</div>
任何想法如何解决这一问题?