我有一个 Web 应用程序,在其中使用 Mustache.js 模板库。我正在使用HospitalListTemplate加载医院列表,因为在此之后的代码$(this.el).html(Mustache.to_html(HospitalListTemplate, { 'data': this.model.toJSON(), 'longitude': lon, 'latitude': lat, 'isEdit': false }));
中我正在调用mapLoad()函数,该函数使用jquery-latitude-longitude-picker-gmapsfunction mapLoad(){
$(".gllpLatlonPicker").each(function () {
(new GMapsLatLonPicker()).init($(this));
});
}
加载 Google 地图我的问题是地图没有加载到模板中. 在 chrome 控制台中调试给出$(".gllpLatlonPicker")因为ie 模板不可用于地图加载,因此无法加载地图。有没有办法先完全加载模板然后调用 mapLoad() 函数??[]
问问题
1023 次