웹 개발 이야기73 [JQUERY] 무한스크롤 (ajax 이용) // 특정 위치로 스크롤이 향할 때, get_ajax.php에서 데이터를 가져온다. $(document).scroll(function() { var item_row_num = 5; var maxHeight = $(document).height(); var currentScroll = $(window).scrollTop() + $(window).height(); if (maxHeight 2023. 3. 8. [JS] 숫자에 콤마 붙이기 function addComma(x) { var idx = 0; while(true){ idx = x.indexOf(","); x = x.replace(",",""); if(idx 2023. 3. 8. [node.js] nodemon 사용법 // 노드몬 설치 npm install -g nodemon npm install -g forever // 리눅스 콘솔에 입력 forever start -l myap$(date '+%Y%m%d').log --append -c "nodemon --watch /var/orange/dmonster1188/ --max-old-space-size=4096" /var/orange/dmonster1188/index.js // log 파일 이름과 위치 확인 forever list // log 파일 확인 tail -f /root/.forever/myap20200120.log 2023. 3. 8. [JQUERY] ajax source $.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("위치정보가 없습니다."); .. 2023. 3. 8. [PHP] 파일 업로드 2023. 3. 8. [PHP] URL 출력하기 HTTP_HOST: REQUEST_URI: URL: 2023. 3. 8. 이전 1 ··· 9 10 11 12 13 다음