[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년 전 조회 1,759
14년 전 조회 2,887
14년 전 조회 1,880
14년 전 조회 1,832
14년 전 조회 1,532
14년 전 조회 1,781
14년 전 조회 2,808
14년 전 조회 1,386
14년 전 조회 3,357
14년 전 조회 1,707
14년 전 조회 1,405
14년 전 조회 1,403
14년 전 조회 1,661
14년 전 조회 1,576
14년 전 조회 1,477
14년 전 조회 1,988
14년 전 조회 1,391
14년 전 조회 2,043
14년 전 조회 2,427
14년 전 조회 1,387
14년 전 조회 1,540
14년 전 조회 1,361
14년 전 조회 1,526
14년 전 조회 1,972
14년 전 조회 1,657
14년 전 조회 1,780
14년 전 조회 1,579
14년 전 조회 1,753
14년 전 조회 1,330
14년 전 조회 2,199
14년 전 조회 1,531
14년 전 조회 2,284
14년 전 조회 9,039
14년 전 조회 1,618
14년 전 조회 2,462
14년 전 조회 2,197
14년 전 조회 2,452
14년 전 조회 2,827
14년 전 조회 1,414
14년 전 조회 1,558
14년 전 조회 7,349
14년 전 조회 1,512
14년 전 조회 1,451
14년 전 조회 2,621
14년 전 조회 1,510
14년 전 조회 1,500
14년 전 조회 2,976
14년 전 조회 1,580
14년 전 조회 4,497
14년 전 조회 4,632
14년 전 조회 1,987
14년 전 조회 1,533
14년 전 조회 2,205
14년 전 조회 1,495
14년 전 조회 1,799
14년 전 조회 1,373
14년 전 조회 8,278
14년 전 조회 1,908
14년 전 조회 1,315
14년 전 조회 1,479
14년 전 조회 2,178
14년 전 조회 1,632
14년 전 조회 1,485
14년 전 조회 1,556
14년 전 조회 1,485
14년 전 조회 1,338
14년 전 조회 1,461
14년 전 조회 1,467
14년 전 조회 1,448
14년 전 조회 1,506
14년 전 조회 1,763
14년 전 조회 1,762
14년 전 조회 2,044
14년 전 조회 1,640
14년 전 조회 1,564
14년 전 조회 1,472
14년 전 조회 1,409
14년 전 조회 1,415
14년 전 조회 1,600
14년 전 조회 2,813
14년 전 조회 1,473
14년 전 조회 1,792
14년 전 조회 2,955
14년 전 조회 2,076
14년 전 조회 1,806
14년 전 조회 5,552
14년 전 조회 2,771
14년 전 조회 1,578
14년 전 조회 1,487
14년 전 조회 1,458
14년 전 조회 1,349
14년 전 조회 2,637
14년 전 조회 3,947
14년 전 조회 1,420
14년 전 조회 1,621
14년 전 조회 2,605
14년 전 조회 1,455
14년 전 조회 2,106
14년 전 조회 2,456
14년 전 조회 1.1만