原来是这样子的
//创建InfoWindow
function createInfoWindow(i){
var json = markerArr[i];
var iw = new BMap.InfoWindow("<b class='iw_poi_title' title='" + json.title + "'>" + json.title + "</b><div class='iw_poi_content'>"+json.content+"</div>");
return iw;
}
修改之后变成这样了
//创建InfoWindow
function createInfoWindow(i){
var json = markerArr[i];
var iw = new BMap.InfoWindow("<b class="iw_poi_title" title="" + json.title + "">" + json.title + "</b><div class="iw_poi_content">"+json.content+"</div>");
return iw;
}
class 里的双引号会变成单引号 title=里有双引号的的,会变成 title="" 这样子,什么原因?