ASP.NET显示radiobuttonlist&的进度条/加载;下拉列表

时间:2016-04-14 03:15:15

标签: javascript c# jquery asp.net loading-image

我正在创建一个ASP.NET / C#应用程序。我想在选择RadioButtonList&时出现进度条/加载DropDownListRadioButtonList& DropDownListAutoPostBack

我需要为RadioButtonList&显示进度条/加载 DropDownList

谢谢。

function ShowProgress() {
        setTimeout(function () {
            var modal = $('<div />');
            modal.addClass("modal");
            $('body').append(modal);
            var loading = $(".loading");
            loading.show();
            var top = Math.max($(window).height() / 2 - loading[0].offsetHeight / 2, 0);
            var left = Math.max($(window).width() / 2 - loading[0].offsetWidth / 2, 0);
            loading.css({ top: top, left: left });
        }, 200);
    }
    $('form').live("submit", function () {
        ShowProgress();
    });

1 个答案:

答案 0 :(得分:0)