IP 자동 위치 추적 - 바 이 두 API


        //        
        window.οnlοad=init;
        function init(){
            var url = 'http://api.map.baidu.com/location/ip';
            var data = {
                ak: "  AK",
                coor: "bd09ll",
                callback: 'jsonpcallback'//            
            };
            //  url
            var buffer = [];
            for (var key in data) {
                buffer.push(key + '=' + encodeURIComponent(data[key]));
            }
            var fullpath = url + '?' + buffer.join('&');
            CreateScript(fullpath);
            //  script
            function CreateScript(src){
                var el = document.createElement('script');
                el.src = src;
                el.async = true;
                el.defer = true;
                document.body.appendChild(el);
            }
        }
        function jsonpcallback(rs) {
            var city = rs['content']['address_detail']['city'];
            console.log(city);//    
        }
    

좋은 웹페이지 즐겨찾기