asp.net mvc jquery加载函数和加载图片?

时间:2012-11-27 10:43:14

标签: jquery asp.net-mvc jquery-load

我有以下代码来加载部分视图:

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

我可以显示加载图片吗?

1 个答案:

答案 0 :(得分: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();
    });
}