【实例截图】
【核心代码】
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <link href="css/index.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="js/jquery-1.8.0.min.js"></script> <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=liXQzVYi9b7qDIOKPabwIurp"></script> <script type="text/javascript"> function myFun(result) { var cityName = result.name; $("#location").text(cityName); // $("#location").click(function () { // // addCookie('city', cityName, 0); // // // addCookie('province', '未知地区', 0); // // }); } var myCity = new BMap.LocalCity(); myCity.get(myFun); </script> </head> <body> <div class="popup" id="popup" > <div class="popup_t"> <p> 请选择您所需要配送的城市</p> <span>您可能的位置 <a id="location" ></a></span> </div> </div> <div class="overlay" > </div> </body> </html>