jquery - 진행률 표시줄

1414 단어
function process_bar(s_date, e_date, data) {
    $('.modal-body').text(' :' + s_date + ' ' + e_date);
    $('#myModalLabel').text(' !');

    $('#confirm-btn').click(function () {
        $('#myModalLabel').text(' ...');
        $('.modal-footer').css('display', 'none');
        $('.modal-body').html('

' + '

' + ' 45% Complete
' + '

' + '
'); $.ajax({ url: '/flowmgr/analysisdata', method: 'post', data: data, dataType: 'json', processData: false, contentType: false }).success(function (data) { if (data['code'] === 10000) { window.location.href = '/flowmgr/analysisdata' } else { alert(data['msg']) } }) }); }

좋은 웹페이지 즐겨찾기