我有一个表格,我想让用户点击表格上的任何元素来获取数据行。我怎么做?
例如,我的视图中有一张这样的表。
<table class="myTable">
: <tr class="table">
<th class="table">
Client ID
</th>
<th class="table">
Client Name
</th>
<th class="table">
Client Address
</th>
</tr>
当我运行这个项目时,我会得到这样的东西:
如果用户单击列客户名称:BBB。它将有一个弹出窗口显示:您好,您选择了客户端 ID:002,客户端名称:BBB,客户端添加:xxxxx。
用户可以单击所有列,它仍然会在弹出窗口中返回整行数据。
这个怎么做?请帮忙。
HTML: @model IEnumerable @{ ViewBag.Title = "Client"; 布局 = "~/Views/Shared/_Layout.cshtml"; }
<div class="body">
<div class="outer">
<div class="inner">
<table class="myTable">
<tr class="table">
<th class="table">
Client Name
</th>
<th class="table">
Client Code
</th>
<th class="table">
Client Address
</th>
<th class="searchTable">
Client Lead Partner
</th>
</tr>
@foreach (var i in Model)
{
<tr class="myTable">
<td class="table">@i.ClientName
</td>
<td class="table">@i.ClientCode
</td>
<td class="table">@i.ClientAddress
</td>
</tr>
}
</table>
</div>
</div>