중지 설정 간격 나는 이 간격을 중단하고 싶습니다.error핸들러가 반복적으로 실행되지 않았습니다.그것이 가능합니까? 그렇다면 어떻게 가능합니까? // example code $(document).on('ready',function(){ setInterval(updateDiv,3000); }); function updateDiv(){ $.ajax({ url: 'getContent.php', success: function(data){ $('.square').html(data); }, error: function(){ $.playSound('oneday.wav'); $('.square').html('Connection problems'); // I want to stop it here } }); } 다음의..