如何从ActionLink获取属性?我有这个:
<table>
@foreach (var item in Model)
{
<tr>
<td>
@Html.ActionLink(item.Name, "Chat", "Home", new { id = item.ID }, new { @class = "Group" })<br />
</td>
</tr>
}
</table>
在重定向页面上,我需要item.name
这是我的JS:
$('#rooms ul li').not('.nav-header').click(function(e) {
e.preventDefault();
$('#rooms ul li').not('.nav-header').removeClass('active');
$(this).addClass('active');
var roomKey = $(this).data('value');
hub.server.joinGroup(roomKey);
});
答案 0 :(得分:0)
只需你可以attr()事件
$(selector).attr('/form or id or class any on of attribute/');