页面加载时FadeOut div

时间:2015-05-10 21:29:17

标签: php jquery html css

我正在使用此代码在我的页面加载后淡出div。

$(window).load(function(){
   // PAGE IS FULLY LOADED  
   // FADE OUT LOADING DIV
   $('#Loading').fadeOut('fast');
});

它的工作正常,但我有一个页面,我使用JQuery加载其他页面:

$('.EditCustomer').load("editcustomer_company.php");

div #Loading和淡出功能位于名为settings.php的文件中,其中包含(<?php include 'settings.php';),该文件位于每个页面上(包括editcustomer_company.php

当我访问加载editcustomer_company.php的页面时#Loading div出现但不淡出

1 个答案:

答案 0 :(得分:2)

jQuery load不对窗口对象执行加载。但是,有完整的&#39;回电可以使用。

$('.EditCustomer').load("editcustomer_company.php", function() {
    $('#Loading').fadeOut('fast');
});

http://api.jquery.com/load/