我需要使用@Ajax.ActionLink
传递一个单击元素的函数,此函数将在OnSuccess
运行,在jQuery中通常使用$(this)
,但使用@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')
,但无法让它工作。