我有一张桌子,有 3 列。最后一列是一个链接,当我单击该链接时,我需要将特定行的值显示为警报。
<table border="1">
<tr>
<th>
id
</th>
<th>
name
</th>
<th>
Occupation
</th>
<th>
click the link
</th>
</tr>
@foreach (var i in Model.allHuman)
{
<tr>
<td>
@Html.DisplayFor(mo => i.id)
</td>
<td>
@Html.DisplayFor(mo => i.name)
</td>
<td>
@Html.DisplayFor(mo => i.occupation)
</td>
<td>
<a href='' id='ppl' name='ppl' class='humanclass'> display </a>
</td>
当用户单击链接时,将显示一条警报,其中包含该特定行的内容。内容应具有ID
后跟NAME
and的格式OCCUPATION
。
jQuery方法:
$(function () {
$('.humanclass').click(function () {
alert( ?????????? ); // How to display ID, NAME and OCCUPATION of the ROW
});
});