ASP.Net MVC加载微调器按钮单击并需要微调器直到数据加载到屏幕中

时间:2014-12-27 06:06:43

标签: asp.net-mvc jquery-ui asp.net-mvc-4 model-view-controller asp.net-ajax

需要在屏幕上显示加载微调器,直到数据完全加载。目前我在javascript中使用了淡入/淡出。任何人请帮助我。

这是用于在触发按钮点击时显示微调器的javascript

function Loading() {
    $('#dvLoading').fadeIn(10);
    $('#dvLoading').fadeOut(5000);


    var url = '@Url.Action("ActionMethod", "Home")'

    $("#Load").load(url);

}

这是有gif图像的CSS ..

        <style type="text/css">
    #dvLoading {
        background: url('../../Content/img/loading.gif') no-repeat;
        height: 250px;
        width: 250px;
        position: fixed;
        z-index: 1000;
        left: 50%;
        top: 50%;
        margin: -25px 0 0 -25px;
    }
</style>

0 个答案:

没有答案