在我的 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>