2012-11-27 2 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