Before/Front-end

우선 현시점부터 네이버 지도 api를 사용하려면 "네이버 클라우드 플랫폼"을 검색하여 홈페이지에서 신청해서 사용가능하다. www.ncloud.com/ NAVER CLOUD PLATFORM cloud computing services for corporations, IaaS, PaaS, SaaS, with Global region and Security Technology Certification www.ncloud.com 중요한점은 네이버 클라우드 플랫폼에서 도메인 등록을 해야하고 js에 자신에 키값붙혀서 붙혀주면된다. 이분 참고해서 하면 많이 도움된다. blog.naver.com/PostView.nhn?blogId=chandong83&logNo=221233832987&categoryNo=75&paren..
// 숫자 타입에서 쓸 수 있도록 format() 함수 추가 Number.prototype.format = function(){ if(this==0) return 0; var reg = /(^[+-]?\d+)(\d{3})/; var n = (this + ''); while (reg.test(n)) n = n.replace(reg, '$1' + ',' + '$2'); return n; }; // 문자열 타입에서 쓸 수 있도록 format() 함수 추가 String.prototype.format = function(){ var num = parseFloat(this); if( isNaN(num) ) return "0"; return num.format(); }; 예제 (jQuery) HTML 20000원 S..
/*조건*/ 로컬 서버에서 사용했음. 같은 폴더안에 test.html , test.json 생성. test.html 번호 이름 전화번호 test.json [ { "id":0, "Name":"shy", "phone":"010-1234-5678" }, { "id":1, "Name":"shy1", "phone":"010-1234-5678" }, { "id":2, "Name":"shy2", "phone":"010-1234-5678" }, { "id":3, "Name":"shy3", "phone":"010-1234-5678" }, { "id":4, "Name":"shy4", "phone":"010-1234-5678" }, { "id":5, "Name":"shy5", "phone":"010-1234-5678" } ..
shy1008
'Before/Front-end' 카테고리의 글 목록