例如,我有以下模型,我将列表传递给视图:
public class ExampleViewModel
{
public int id { get; set; }
public string name { get; set; }
}
在我看来,我有以下几点:
@model List<ExampleViewModel>
<table>
<tr>
<th>Name</th>
<th>Action</th>
</tr>
@foreach (var x in Model)
{
<tr>
<td>
@Html.DisplayFor(m => x.name)
</td>
<td>
<input type="button" onclick="edit();" value="Edit">
</td>
</tr>
}
</table>
<script type="text/javascript">
function edit(x) {
window.location = "/Home/Edit?id=" + x
}
</script>
我遇到的问题是将 x.id 传递给 edit() 函数。我期望:
<input type="button" onclick="edit(@x.id);" value="Edit">
工作,但它没有。
谢谢