2012-11-27 40 views

回答

3

這樣做

$(document).ready(function() { 

    // show loading animation   
    $("#loading-animation").show(); 

    $("#customer_operations_container").load('/Customer/_AddCustomer', function() { 
     // this function is the callback of the 'load' method 
     // hide loading animation 
     $("#loading-animation").hide(); 
    }); 
} 
+0

非常感謝......我會接受的。 –

+0

很高興我能幫忙:) – Mihai