$.ajax({
type: "POST",
url: "/get_ajax.php",
data: {
area_do:str
},
dataType : "json",
contentType:"application/json",
cache: false,
success: function(data){
console.log(data);
},
error: function(error){
switch(error.code) {
case error.UNKNOWN_ERROR:
alert("알수없는 오류입니다.");
break;
case error.PERMISSION_DENIED:
alert("사용 권한이 거부되었습니다.");
break;
case error.POSITION_UNAVAILABLE:
alert("위치정보가 없습니다.");
break;
case error.TIMEOUT:
alert("시간 초과 오류");
break;
}
}
});
'웹 개발 이야기 > js, jquery' 카테고리의 다른 글
[JQUERY] 라디오버튼_선택된것과 안된것들 css 지정 (0) | 2023.03.08 |
---|---|
[JQUERY] 무한스크롤 (ajax 이용) (0) | 2023.03.08 |
[JS] 숫자에 콤마 붙이기 (0) | 2023.03.08 |
[node.js] nodemon 사용법 (0) | 2023.03.08 |
[node.js] FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory (0) | 2023.03.08 |
댓글