解决方法
如果您在服务器端知道链接不可用,则只需显示该操作不可用的消息:
@if(condition) { @Html.ActionLink("Delete","Delete",new { id = @Model.Id}) } else { <text>Action is not available</text> }
否则,您只能禁用链接
> CSS:Disable link using css
> JS:How to enable or disable an anchor using jQuery?
使其工作跨浏览器:Should the HTML Anchor Tag Honor the Disabled Attribute?