我有一个事件日历,当您单击某一天时,它会加载每日程序。但它不会淡入。页面有三个 div,因为日历只显示实际月份、上个月和下个月。(div1 - prev, div2 - actual, div3 - next) 但一次只有一个可见。它完美地加载了内容,但没有淡入淡出。任何的想法?
谢谢!
丹尼尔
$(document).ready(function(){
$(".freeday").click(function(){
$("#p_div1").load("none.txt", {}, function(){ $(this).fadeIn("700");} );
$("#p_div2").load("none.txt", {}, function(){ $(this).fadeIn("700");} );
$("#p_div3").load("none.txt", {}, function(){ $(this).fadeIn("700");} );
});
});