我正在尝试使用ajax在html中淡入淡出。它加载但没有褪色,我不知道我在做什么错,这是我的代码:

$("#artworks").click(function(){
// load artworks page
    $("#content").load("artworks.html"); function(){
    $(this).fadeIn("slow");
    });
});

这是一个错误,我的错误是什么?

最佳答案

$("#artworks").click(function(){
    $("#content").load("artworks.html"); function(){
    $(this).fadeIn("slow");
    });
});

应该为
$("#artworks").click(function(){
    $("#content").load("artworks.html", function(){
      $(this).fadeIn("slow");
    });
});

注意;,的更改以及)的运动

10-06 03:52