我有一个div,它有几个输入元素在它…我想要遍历每一个元素。想法吗?


当前回答

它使用.attr('value')来处理元素属性

$("#element div").each(function() {
   $(this).attr('value')
});

其他回答

Children()本身就是一个循环。

$('.element').children().animate({
'opacity':'0'
});

如果你需要递归地遍历子元素:

function recursiveEach($element){
    $element.children().each(function () {
        var $currentElement = $(this);
        // Show element
        console.info($currentElement);
        // Show events handlers of current element
        console.info($currentElement.data('events'));
        // Loop her children
        recursiveEach($currentElement);
    });
}

// Parent div
recursiveEach($("#div"));   

注意: 在本例中,我将展示向对象注册的事件处理程序。

也可以这样做:

$('input', '#div').each(function () {
    console.log($(this)); //log every element found to console output
});
$('#myDiv').children().each( (index, element) => {
    console.log(index);     // children's index
    console.log(element);   // children's element
 });

这个迭代遍历所有的子元素,它们的带有index值的元素可以分别使用element和index访问。

它使用.attr('value')来处理元素属性

$("#element div").each(function() {
   $(this).attr('value')
});