我需要传入一个函数,点击的元素 using @Ajax.ActionLink
,这个函数将运行 at OnSuccess
,通常在我们使用的 jQuery 中$(this)
,但 with@Ajax.ActionLink
不起作用。有没有其他方法可以做到这一点?
@Ajax.ActionLink(Model._friends, "HistoryFriends", "Notification", new AjaxOptions{UpdateTargetId="category-result", OnSuccess = "activeThis(this, '.ctg-active')", OnFailure = "error"})
如您所见,我正在尝试传递this
给函数activeThis(this, '.ctg-active')
,但无法使其正常工作。