[jQuery] 상위부터 차례로 지역 선택하기

http://sir.co.kr/bbs/board.php?bo_table=pg_qa&wr_id=4055

이 글을 보고 간단히 만들어 봤습니다.


index.html

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
    <head>
        <title>Real-time Address</title>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <link href="stylesheet.css" media="screen" rel="stylesheet" type="text/css" />
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
        <script src="application.js" type="text/javascript"></script>
        </head>
    <body>
        <div id="content">
            <select>
                <option value="">광역시/도</option>
            </select>
            <select>
                <option value="">시/도/군</option>
            </select>
            <select>
                <option value="">읍/면/동</option>
            </select>
        </div>
    </body>
</html>


stylesheet.css

body {
    font-size: 12px;
    background: #FFF;
    color: #333;
    margin: 0;
}

#content {
    margin: 30px;
    padding: 20px;
    background: #7CF;
}


application.js

$(function() {
    var uniqueId = 0;

    function ajaxYqlWithJson(options) {
        var callbackName = 'my_yql_callback_' + ++uniqueId;
        window[callbackName] = options.callback;

        var yql = 'SELECT * FROM json WHERE url="' + encodeURIComponent(options.url) + '"';

        $.ajax({
            url: 'http://query.yahooapis.com/v1/public/yql?q=' + yql +
                '&format=json&callback=' + callbackName,
            dataType: 'script',
            complete: function() {
                delete window[callbackName];
            }
        });
    }

    function createSelectCallback(index) {
        return function(data) {
            var select = $('select').eq(index);
            $(data.query.results.result.subRegion).each(function(i, region) {
                $('<option></option>').attr('value', region.code).text(region.name)
                    .appendTo(select);
            });
        };
    }

    function clearSelect(select) {
        select.html(select.children().first());
    }

    function ajaxGetRegions(options) {
        var level = options.level;
        var code = options.code;
        if (code && level <= 8) {
            ajaxYqlWithJson({
                url: 'http://map.naver.com/common2/getBRegionByCodeAndLevel.nhn' +
                    '?level=' + level + '&code=' + code,
                callback: options.callback
            });
        }
    }

    $('select').each(function(index, select) {
        $(select).change(function() {
            for (var i = index + 1; i < $('select').length; i++) {
                clearSelect($('select').eq(i));
            }
            ajaxGetRegions({
                level: 2 + 3 * (index + 1),
                code: $(this).val(),
                callback: createSelectCallback(index + 1)
            })
        });
    });

    ajaxYqlWithJson({
        url: 'http://map.naver.com/common2/getBRegionByCodeAndLevel.nhn?level=2',
        callback: createSelectCallback(0)
    });
});

|

댓글 6개

서버 없이 돌아가는 코드를 만들기 위해 네이버 지도가 사용하는 API를 몰래 썼습니다.

실제로 서비스하실 땐 저 부분을 바꿔줘야겠죠? 그러면 YQL을 쓸 이유도 없구요.
내공이 상당하신 분 같네요^^
좋은 팁 자주 올려주시면 감사하겠습니다~
짧은 코드안에 jquery의 많은 부분이 심플하게 구성되어 있네요.
jquery 공부하는 입장에서도 좋은 소스같습니다.
감사합니다.
감사합니다...^^
서버에 올려놨습니다. 어떤 건지 결과물부터 보고 싶은 분은... http://j.mp/vRyafl
와우~~ 대단하시네요 ....

멋지네요...
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
14년 전 조회 1,421
14년 전 조회 2,577
14년 전 조회 1,504
14년 전 조회 1,504
14년 전 조회 1,209
14년 전 조회 1,463
14년 전 조회 2,484
14년 전 조회 1,028
14년 전 조회 3,042
14년 전 조회 1,350
14년 전 조회 1,073
14년 전 조회 1,037
14년 전 조회 1,324
14년 전 조회 1,243
14년 전 조회 1,146
14년 전 조회 1,640
14년 전 조회 1,067
14년 전 조회 1,703
14년 전 조회 2,117
14년 전 조회 1,057
14년 전 조회 1,171
14년 전 조회 1,022
14년 전 조회 1,189
14년 전 조회 1,606
14년 전 조회 1,307
14년 전 조회 1,453
14년 전 조회 1,247
14년 전 조회 1,430
14년 전 조회 1,005
14년 전 조회 1,823
14년 전 조회 1,181
14년 전 조회 1,962
14년 전 조회 8,724
14년 전 조회 1,296
14년 전 조회 2,127
14년 전 조회 1,897
14년 전 조회 2,163
14년 전 조회 2,522
14년 전 조회 1,084
14년 전 조회 1,230
14년 전 조회 7,025
14년 전 조회 1,201
14년 전 조회 1,097
14년 전 조회 2,310
14년 전 조회 1,193
14년 전 조회 1,168
14년 전 조회 2,650
14년 전 조회 1,250
14년 전 조회 4,212
14년 전 조회 4,342
14년 전 조회 1,660
14년 전 조회 1,236
14년 전 조회 1,885
14년 전 조회 1,152
14년 전 조회 1,449
14년 전 조회 1,041
14년 전 조회 7,941
14년 전 조회 1,581
14년 전 조회 975
14년 전 조회 1,144
14년 전 조회 1,838
14년 전 조회 1,294
14년 전 조회 1,120
14년 전 조회 1,210
14년 전 조회 1,169
14년 전 조회 1,026
14년 전 조회 1,154
14년 전 조회 1,123
14년 전 조회 1,146
14년 전 조회 1,162
14년 전 조회 1,446
14년 전 조회 1,440
14년 전 조회 1,686
14년 전 조회 1,333
14년 전 조회 1,246
14년 전 조회 1,158
14년 전 조회 1,087
14년 전 조회 1,097
14년 전 조회 1,272
14년 전 조회 2,481
14년 전 조회 1,142
14년 전 조회 1,483
14년 전 조회 2,632
14년 전 조회 1,739
14년 전 조회 1,483
14년 전 조회 5,231
14년 전 조회 2,443
14년 전 조회 1,285
14년 전 조회 1,167
14년 전 조회 1,100
14년 전 조회 1,031
14년 전 조회 2,297
14년 전 조회 3,621
14년 전 조회 1,110
14년 전 조회 1,323
14년 전 조회 2,284
14년 전 조회 1,123
14년 전 조회 1,783
14년 전 조회 2,127
14년 전 조회 1.1만