1

假设我有这样的 HTML,

<table id="Words">
<tr>
    <td class="cell">Hello</td>
    <td class="desc">A word</td>
</tr>
<tr>
    <td class="cell">Bye</td>
    <td class="desc">A word</td>
</tr>
<tr>
    <td class="cell">Tricicle</td>
    <td class="desc">A toy</td>
</tr>

是否有任何优雅的方式/功能可以将其转换为 Javascript 关联数组?怎么办?

4

5 回答 5

4
$('tr').map(function(){
    return {
        cell: $('.cell', this).text(),
        desc: $('.desc', this).text()
    }
})

jQuery(Object { cell="Hello", desc="A word"}, Object { cell="Bye", desc="A word"}, Object { cell="Tricicle", desc="A toy"})
于 2012-04-13T07:52:00.787 回答
1

http://jsfiddle.net/cyFW5/ - 在这里,它适用于每个类的 td

$(function() {

    var arr = [],
        tmp;

    $('#Words tr').each(function() {

        tmp = {};

        $(this).children().each(function() {

            if ($(this).attr('class')) {
                tmp[$(this).attr('class')] = $(this).text();
            }

        });

        arr.push(tmp);
    });

    console.log(arr);

});​
于 2012-04-13T07:52:02.830 回答
1
var table = [];
$('table tr').each(function() {
    var row = [];
    $(this).find('td').each(function() {
        var cell = {};
        cell[$(this).attr('class')] = $(this).html();
        row.push(cell);
    });
    table.push(row);
});
于 2012-04-13T07:58:13.563 回答
0

这是一个演示,请观看控制台。

$(function() {

    var words = [];

    $('#Words tr').each(function() {
        words.push({
            cell: $('.cell', this).text(),
            desc: $('.desc', this).text()
        });
    });

    console.log(words);

});​
于 2012-04-13T07:49:49.073 回答
0

鉴于这个特定的用例,那么这将起作用:

var results = {};
$('table#Words tr').each(function(i, x){
    results[i] = {
      desc: $(x).find('.desc').text(),
      cell: $(x).find('.cell').text()
    }
});

但是为什么要全部转换为对象呢?它的用途是什么,可能有一种更简单的方法来遍历数据。

于 2012-04-13T07:51:13.393 回答