ajax 를 이용한 비동기식 삭제 데이터 처리.

· 2017-05-26 (금) 22:46:37 · 3132

javascript

 

function confirm_action(action, msg) {

if (confirm(msg)) {

return $.ajax({

type : 'post',

async : false,

url : action,

dataType : 'json', 

timeout : 30000,

cache : false ,

success : function(response, status, request) {

return response;

}

});

 

}

}

 

$(document).ready(function() {

 

    $(document).on('click', '.delete', function (e) {

 

        e.preventDefault();

        var action = $(this).attr('href');

 

        var req = confirm_action(action, "선택하신 정보를 삭제하시겠습니까?");

        req.success(function(data) {

            if (data.rescd == '00') {

                alert(data.restx);

                location.reload();

            }

            else {

                alert(data.restx);

            }

        });

 

    });

});

 

 

 

 

html

<a href="./delete.php" class="ws-delete">삭제</a> 

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 17-06-06 조회 2,355
PHP 17-06-05 조회 2,734
PHP 17-06-05 조회 2,470
PHP 17-06-05 조회 2,573
기타 17-06-02 조회 4,375
PHP 17-06-02 조회 3,151
PHP 17-06-01 조회 2,362
PHP 17-06-01 조회 2,972
PHP 17-06-01 조회 2,187
jQuery 17-05-27 조회 3,238
MySQL 17-05-27 조회 4,158
jQuery 17-05-26 조회 3,133
JavaScript 17-05-26 조회 2,792
PHP 17-05-24 조회 2,420
PHP 17-05-24 조회 2,152
PHP 17-05-24 조회 2,706
PHP 17-05-16 조회 3,329
PHP 17-05-16 조회 2,669
PHP 17-05-16 조회 2,570
node.js 17-05-14 조회 2,135
node.js 17-05-14 조회 2,593
node.js 17-05-14 조회 2,279
PHP 17-05-12 조회 2,785
PHP 17-05-12 조회 2,944
PHP 17-05-12 조회 2,794
PHP 17-05-11 조회 2,818
PHP 17-05-11 조회 2,976
PHP 17-05-11 조회 2,322
PHP 17-05-05 조회 2,855
PHP 17-05-05 조회 2,607