AJAX 요청 중 사용 안 함 버튼 버튼을 클릭한 후 비활성화하려고 합니다.시도했습니다. $("#ajaxStart").click(function() { $("#ajaxStart").attr("disabled", true); $.ajax({ url: 'http://localhost:8080/jQueryTest/test.json', data: { action: 'viewRekonInfo' }, type: 'post', success: function(response){ //success process here $("#alertContainer").delay(1000).fadeOut(800); }, error: errorhandler, dataType: 'json' }); $("#ajaxStart").attr..