2

在我的 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(result) 我得到了在部分视图上显示的 html 片段

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

1 回答 1

2

你可以试试:

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

或者

var firstItem = null;
for(var x in result) { // if you have named properties
    firstItem = result[x];
    break;
}
于 2012-12-27T15:12:14.373 回答