我从某个地方借了一段代码,但我不明白。这是一种 ajax 调用 web 服务。
function SearchMyStuff() {
$("#tblHouse").hide();
$.ajax({
type: "POST",
url: pageName + "SearchMyStuff",
data: "{'oParams':" + JSON.stringify(BuildMyStuffSearch()) + "}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
if (response.d.length > 0) {
while ($('#MyStuffBody tr').length > 1) {
$('#MyStuffBody tr:last').remove();
}
$.each(response.d, function (index, item) {
var templateRow = $('#templateMyStuff');
我想知道的是
function (index, item)
这里的索引和项目是什么。
谢谢你解释。