0

我有以下代码来加载 partialView :

$(document).ready(function () {
    $("#customer_operations_container").load('/Customer/_AddCustomer');
}

我可以显示加载图像吗?

4

1 回答 1

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();
    });
}
于 2012-11-27T10:45:51.677 回答