我想知道为什么这不再起作用......之前有效,我看不出什么错误......
我想在单击带有类changePage的href链接时通过此脚本加载类container2中的页面。
$(document).ready(function () {
$(".changePage").click(function () {
$(".container2").fadeOut("slow", function () {
$(this).load(href, function (responseText, status, req) {
if (status != "error") $(this).slideDown("slow");
});
});
return false;
});
});
答案 0 :(得分:1)
我想你想要:
$(document).ready(function () {
$(".changePage").click(function () {
var href = this.href; //<< define href here
$(".container2").fadeOut("slow", function () {
$(this).load(href, function (responseText, status, req) {
if (status != "error") $(this).slideDown("slow");
});
});
return false;
});
});