访问js集合中的第一个元素

时间:2012-12-27 15:08:32

标签: javascript jquery

在我的js函数中,我有以下

success: function (result) {
     $.each(result, function (i, item) {                  
        $("#tab-" + item.myType).append(result);
     })
}

现在我改变了这个功能,而我已经关注

success: function (result) {
   $("#tab-how To Access to the first result collection element ").html(result);
 }
}

我试过

$("#tab-" + result[0].item.myType).html(result);

但它没有帮助。

问题是:如何访问结果集合对象中的第一个js元素

有什么想法吗?

使用console.log(结果)我得到了我在部分视图上显示的html片段

div class="product clearfix">
        <div class="l-new">
            <a href="#">
                @Model.MyType (rendered as My Type)
            </a> 
....
</div>

1 个答案:

答案 0 :(得分:1)

您可以尝试:

result[0] // if you have numeric indices in your result collection

OR

var firstItem = null;
for(var x in result) { // if you have named properties
    firstItem = result[x];
    break;
}