我有这一行:
<%: Html.ActionLink(item.Name, "Group", "Recommend", new { area = "User" , groupId = item.GroupId, onclick = "Approve(<% groupId %>)" } ) %>
并且需要将 groupId 传递给 JS 函数 Approve(<% groupId %>) 该行给出错误:NewLine in constant。第二个 %> 在 Approve(<% groupId %>) 中以黄色突出显示,但不是第一个。我是否缺少标签或缺少报价?
谢谢