0

我得到了id一个li元素,并希望使用该名称来访问对象的该部分。我试图添加var selectionId其中包含我想要的部分的名称,例如cars但我得到一个错误。有办法吗?

谢谢。

$(document).ready(function() {

    $(".markerSelection").click(function() {
      var selectionId = $(this).attr("id");
      drop(selectionId);
    }); 
});


var markers = {
    shopping : [
    new google.maps.LatLng(52.26183, -7.11339),
    new google.maps.LatLng(52.26134, -7.11226),
    new google.maps.LatLng(52.26067, -7.11181),
    new google.maps.LatLng(52.26003, -7.11033)],
    cars : [
    new google.maps.LatLng(52.26183, -7.11339),
    new google.maps.LatLng(52.26134, -7.11226),
    new google.maps.LatLng(52.26067, -7.11181),
    new google.maps.LatLng(52.26003, -7.11033)] 
};

var iterator = 0; 

function drop(selectionId) {
    clearOverlays();
    for (var i = 0; i < markers.selectionId.length; i++) {
        setTimeout(function() {
            addMarker();
        }, i * 200);
    }
}
4

1 回答 1

4

如果您尝试通过变量键访问对象属性,则需要使用数组表示法:

... markers[selectionId].length ...

markers.selectionId失败,因为它等同于markers["selectionId"].

于 2012-07-14T22:10:42.330 回答