[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
와우~~ 대단하시네요 ....

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

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 862
14년 전 조회 1,975
14년 전 조회 990
14년 전 조회 900
14년 전 조회 645
14년 전 조회 890
14년 전 조회 1,907
14년 전 조회 475
14년 전 조회 2,437
14년 전 조회 804
14년 전 조회 512
14년 전 조회 514
14년 전 조회 778
14년 전 조회 683
14년 전 조회 582
14년 전 조회 1,069
14년 전 조회 508
14년 전 조회 1,185
14년 전 조회 1,553
14년 전 조회 519
14년 전 조회 648
14년 전 조회 502
14년 전 조회 654
14년 전 조회 1,082
14년 전 조회 778
14년 전 조회 901
14년 전 조회 725
14년 전 조회 865
14년 전 조회 458
14년 전 조회 1,268
14년 전 조회 613
14년 전 조회 1,372
14년 전 조회 8,125
14년 전 조회 749
14년 전 조회 1,590
14년 전 조회 1,313
14년 전 조회 1,588
14년 전 조회 1,925
14년 전 조회 523
14년 전 조회 664
14년 전 조회 6,460
14년 전 조회 653
14년 전 조회 586
14년 전 조회 1,736
14년 전 조회 639
14년 전 조회 637
14년 전 조회 2,104
14년 전 조회 703
14년 전 조회 3,612
14년 전 조회 3,736
14년 전 조회 1,094
14년 전 조회 674
14년 전 조회 1,353
14년 전 조회 599
14년 전 조회 923
14년 전 조회 514
14년 전 조회 7,331
14년 전 조회 1,016
14년 전 조회 428
14년 전 조회 592
14년 전 조회 1,293
14년 전 조회 726
14년 전 조회 560
14년 전 조회 679
14년 전 조회 615
14년 전 조회 424
14년 전 조회 590
14년 전 조회 573
14년 전 조회 555
14년 전 조회 626
14년 전 조회 871
14년 전 조회 883
14년 전 조회 1,113
14년 전 조회 774
14년 전 조회 694
14년 전 조회 570
14년 전 조회 540
14년 전 조회 527
14년 전 조회 709
14년 전 조회 1,930
14년 전 조회 577
14년 전 조회 902
14년 전 조회 2,067
14년 전 조회 1,171
14년 전 조회 945
14년 전 조회 4,685
14년 전 조회 1,891
14년 전 조회 746
14년 전 조회 617
14년 전 조회 576
14년 전 조회 467
14년 전 조회 1,738
14년 전 조회 3,059
14년 전 조회 554
14년 전 조회 743
14년 전 조회 1,725
14년 전 조회 587
14년 전 조회 1,245
14년 전 조회 1,588
14년 전 조회 1만
🐛 버그신고