我在 MVC3 中使用 JQuery DataTable 来显示用户列表。我正在打开一个用于编辑数据的 JQuery 对话框,但在对话框中,第一行的数据仅针对所有行显示。
以下是我的观点:
@model IEnumerable<EditorDataTable.Models.UserModel>
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div id="mypopup" style="display:none;">
<label id="lblFirstName">FirstName</label>
<br />
<input type="text" id="txtFirstName" name="txtFirstName" />
<br />
<label id="lblLastName">LastName</label>
<br />
<input type="text" id="txtLastName" name="txtLastName" />
<br />
<label id="lblCity">City</label>
<br />
<input type="text" id="txtCity" name="txtCity" />
<br />
<input type="submit" id="btnUpdate" value="Update" />
</div>
<table id="example" class="display">
<thead>
<tr>
<th>
FirstName
</th>
<th>
LastName
</th>
<th>
City
</th>
<th>
Action
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model) {
<tr class="even gradeC">
<td>
@Html.DisplayFor(modelItem => item.FirstName)
</td>
<td>
@Html.DisplayFor(modelItem => item.LastName)
</td>
<td>
@Html.DisplayFor(modelItem => item.City)
</td>
<td class="click">
@Html.HiddenFor(modelItem => item.UserID,"Value")
<a href="#" id="edit">Edit</a>
</td>
</tr>
}
</tbody>
</table>
下面是我的jQuery:
$(document).ready(function () {
$('#example').dataTable({
});
$(".click").on('click', function (e) {
$("#txtFirstName").val("");
$("#txtLastName").val("");
$("#txtCity").val("");
var UserId = $("#item_UserID").val();
$("#mypopup").dialog();
$.ajax({
type: "GET",
url: "Home/EditData",
data: { UserId: UserId },
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
if (data) {
$("#txtFirstName").val(data.aaData[0][0]);
$("#txtLastName").val(data.aaData[0][1]);
$("#txtCity").val(data.aaData[0][2]);
}
}
});
});
});
我采用了一个隐藏字段来存储我的用户 ID,我使用它来获取我的用户数据,但每次我只获取第一行的用户 ID。