问题是点击工作是第一次,但之后没有

时间:2017-04-19 09:18:52

标签: jquery html ajax

$.ajax({
  url: "/base_data",
  type: 'get',
  dataType: 'json',
  async: false,
  success: function(response) {
    $(response).each(function(index, value) {
      popup = L.marker([value.latitude, value.longitude]).addTo(map);
      popup.on("click", function() {
        var con = getMembers(value.id);
        // alert("CLicked"+value.id);
        // console.log(con);
        this.bindPopup(con).openPopup();
      });
    });
  },
  error: function() {

  }
});

0 个答案:

没有答案