使用每个DIV内部部分构建一个div的id数组

时间:2013-09-13 15:34:37

标签: javascript jquery

我正在尝试在此HTML代码中获取每个DIV的ID

<section id="choices">    
    <div id="talla_choice_24" style="">
        ...
    </div>
    <div id="color_choice_25" style="">
        ...
    </div>
    <div id="sport_choice_26" style="">
        ...
    </div>

    <button type="button" class="create-variation" id="create-variation" style="">Crear variaciones</button>
    <section id="variations_holder" style="display: none"></section>
</section>

所以我做了这个:

function getDivId(div) {
    var inputValues = [];
    $("#" + div + ' > div').each(function() {
        inputValues.push($(this).val());
    })
    return inputValues;
}

我在这里打电话:

$('#choices').on("click", "#create-variation", function(e) {
    var parent_id = $(this).closest("section").attr("id");
    var element = getDivId(parent_id);

    iterateChoices("", element[0], element.slice(1), 0);
});

我需要建立这样的东西:

var element = new Array($('#talla_choice_24 input:text'), $('#color_choice_25 input:text'), $('#sport_choice_26 input:text'));

但是我收到了这个错误:

  

未捕获的TypeError:对象没有方法'each'

有什么问题?

更新

这是iterateChoices()函数的代码:

function iterateChoices(row, element, choices, counter) {
    if ($.isArray(choices) && choices.length > 0) {
        element.each(function(index, item) {
            if (counter == 0)
                row = '<input type="text" required="required" value="" name="pupc[]" /><input type="text" required="required" value="" name="pprice[]" /><input type="text" required="required" value="" name="pqty[]" />';

            iterateChoices(row + '<input value="' + item.value + '">', choices[0], choices.slice(1), counter + 1);
        });
    } else {
        html_temp = "";
        $.each(element, function(index, item) {
            html_temp += row + '<input value="' + item.value + '"><br>';
        });
        html += html_temp;
    }
}

我也对此代码做了一些更改:

function getDivId(div) {
    var inputValues = [];
    $("#" + div + ' > div').each(function() {
        inputValues.push("#" + $(this).attr('id') + ' input:text');
    });

    return inputValues;
}

现在错误更改为:

  

未捕获TypeError:对象#talla_choice_24输入:text没有方法'each'

更新2

我仍然继续更改getDivId()函数来构建这样的数组:

 var element = new Array($('#talla_choice_24 input:text'), $('#color_choice_25 input:text'), $('#number_choice_23 input:text'), $('#sport_choice_23 input:text'));

但是由于数组值被构造为字符串,所以无法得到它,见下文:

function getDivId(div) {
    var inputValues = [];
    $("#" + div + ' > div').each(function() {

        inputValues.push('$("#' + $(this).attr('id') + ' input:text")');
    });

    return inputValues;
}

我得到了:

("$('#talla_choice_24 input:text')", "$('#color_choice_25 input:text')")

我认为存在问题

3 个答案:

答案 0 :(得分:1)

您在val元素上使用div方法,该元素只返回一个空字符串。字符串上没有each方法。


您不需要每个div的id来获取其中的输入元素。这将为您提供单个jQuery对象的输入:

var element = $(this).closest("section").find("> div input:text");

如果你真的需要一组单独的jQuery对象,那么你可以这样做:

element = element.map(function(){ return $(this); }).get();

答案 1 :(得分:0)

var arr = [];
$("#create-variation").on('click', function(){
    $("#choices > div").each(function(a,b){
        arr.push($(this).text());
    });
});

答案 2 :(得分:0)

经过一些头痛我意识到如何修复(我的)错误,这是解决所有问题的方法:

function getDivId(div) {
    var inputValues = [];
    $("#" + div + ' > div').each(function() {
        inputValues.push($("#" + $(this).attr('id') + " input:text"));
    });

    return inputValues;
}