例如我有以下的模型,我傳遞的列表視圖:如何將數據從視圖模型傳遞到JavaScript函數?
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">
工作,但它沒有。
感謝
未終止的字符串常量 – user1857900
嘗試更新的答案 – Amit
現在語法錯誤! – user1857900