我有这个ActionLink:
@Ajax.ActionLink(" + ", "Plus", "Review",
new { cardid = item.CardId, userid = WebSecurity.CurrentUserId },
new AjaxOptions { HttpMethod = "POST", InsertionMode = InsertionMode.Replace, UpdateTargetId = "plus-" + @item.CardId},
new { @class = "plus", data_theme = "c", data_icon = "true" })
可以通过UpdateTargetId更改只有一个(第一个)元素,ID =“plus-”+ @ item.CardId在页面上?
因为我在页面div中使用的ID相同而且只有一个。相同的卡可以显示1-3次。
感谢。
大卫