0

我有一个获取地点列表的搜索应用程序。这些位置和名称将位于属性标记中,例如

<div data-location="22.4245,-15.000" data-id="place_name_1">Place Name 1</div>
<div data-location="23.4435,-13.000" data-id="place_name_2">Place Name 2</div>
<div data-location="27.42755,-13.000" data-id="place_name_3">Place Name 3</div>

我正在使用这些信息来获取谷歌地图中的标记。我正在查看他们的文档,我想知道如何将这些信息放入 javascript 中的数组中?如果您查看链接,则有一个像这样的数组:

var beaches = [ 
  ['Bondi Beach', -33.890542, 151.274856, 4], 
  ['Coogee Beach', -33.923036, 151.259052, 5], 
  ['Cronulla Beach', -34.028249, 151.157507, 3], 
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2], 
  ['Maroubra Beach', -33.950198, 151.259302, 1] 
]; 

我需要做什么才能将数据从 html 获取到 javascript 中的数组?

谢谢!

4

3 回答 3

1

尝试这个:

var $beaches = [];

$.find("div").each(function(){

     var $loc = [];

    $loc.push($(this).html());
    $loc.push($(this).attr("data-location"));
    $loc.push($(this).attr("data-id"));
    $loc.push(2);

    $beaches.push($loc);
 });
于 2012-11-21T07:40:09.527 回答
0

使用 jQuery,您可以解析 HTML:

var beaches = [];

// iterate over all <div>s (assuming they're always in that format)
$('div').each(function (index, div) {

    // break apart the comma-separated coordinates in the data-location attribute
    var coords = $(div).data('location').split(',');

    // add this location to the beaches array (with z-index 0)
    beaches.push([$(div).text(), coords[0], coords[1], 0]);

});

一些应用程序可能会将坐标编码为经度、纬度。如果是这种情况,您将需要交换 的位置coords,即:beaches.push([$(div).text(), coords[1], coords[0], 0]);

请记住,该数组非常特定于setMarkers()您所指的示例(实际上是函数)。

于 2012-11-21T07:30:02.390 回答
0
var beaches = [];    
$('div[data-location][data-id]').each(function() {
    beaches.push([
        [$(this).attr('data-id')]
            .concat(
                $(this).attr('data-location').split(","),
                [2]
            )
    ]);
});
于 2012-11-21T07:26:59.337 回答