在我的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>
答案 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;
}