百度地图加载百度js 出现 BMap is not defined

!function(mapInit) {
  var script = document.createElement("script");
  script.type = "text/javascript";
  script.src = "http://api.map.baidu.com/api?v=2.0&ak="+ App.BMapAk +"&callback=mapinit";
  window['mapinit'] = function() {
    mapInit();
  };
  document.head.appendChild(script);
  //统计页面
  APP.ajax('nearby/stat_nearby_me.html', {});
}(function() {
  // 这里使用BMap

});


给百度js 后面的上一个回调方法  mapinit

你可能感兴趣的:(js基础类)