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

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

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,356
PHP 17-06-05 조회 2,736
PHP 17-06-05 조회 2,474
PHP 17-06-05 조회 2,575
기타 17-06-02 조회 4,376
PHP 17-06-02 조회 3,154
PHP 17-06-01 조회 2,364
PHP 17-06-01 조회 2,976
PHP 17-06-01 조회 2,187
jQuery 17-05-27 조회 3,240
MySQL 17-05-27 조회 4,161
jQuery 17-05-26 조회 3,135
JavaScript 17-05-26 조회 2,793
PHP 17-05-24 조회 2,423
PHP 17-05-24 조회 2,152
PHP 17-05-24 조회 2,709
PHP 17-05-16 조회 3,331
PHP 17-05-16 조회 2,675
PHP 17-05-16 조회 2,573
node.js 17-05-14 조회 2,137
node.js 17-05-14 조회 2,597
node.js 17-05-14 조회 2,280
PHP 17-05-12 조회 2,786
PHP 17-05-12 조회 2,947
PHP 17-05-12 조회 2,795
PHP 17-05-11 조회 2,822
PHP 17-05-11 조회 2,977
PHP 17-05-11 조회 2,326
PHP 17-05-05 조회 2,859
PHP 17-05-05 조회 2,608