반응형
$(document).ready(function(){
$.ajax({
type : 'GET',
url : '/userinfo',
success : function(response) {
if (Object.keys(response).length > 0) {
alert('length > 0');
} else {
alert('length < 0')
}
},
error : function(e) {
alert("ERROR : " + e.statusText);
}
});
});
반응형
'JAVASCRIPT > JQuery' 카테고리의 다른 글
[JQuery] 자식창에서 부모창 제어하기 (0) | 2018.09.12 |
---|---|
[JQuery] Parent(부모), ChildI(자식) 이벤트 문제 (0) | 2018.08.30 |
[JQuery] 동적으로 element append시 Click Event 문제 (0) | 2018.08.30 |
[JQuery] 브라우저 해상도 알아내기 (0) | 2018.08.28 |
[JQuery] tab menu 예제 (0) | 2018.08.16 |
댓글