我有1000条记录,我想通过Ajax为每个记录设置值。它的工作非常慢,我需要提高性能。我该怎么做才能提高性能?以下是我目前的代码:
这是我的行动:
$(".Record").each(function () {
var $this = $(this);
GetData($this.attr("id"), $this);
});
function GetData(value,element) {
$.ajax({
url: '@Url.Action("GetData", "Employees")',
data: { id: value },
cache: false,
type: "GET",
success: function (data) {
element.text(data);
}
});
}