asp.net-mvc – MVC3如何禁用/启用ActionLink

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – MVC3如何禁用/启用ActionLink前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有条件,我想禁用或启用我的actionLink按钮.

我该怎么办?

@ Html.ActionLink(“删除”,“删除”,新的{id = @ Model.Id})

谢谢,

解决方法

如果您在服务器端知道链接不可用,则只需显示该操作不可用的消息:
@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?

原文链接:https://www.f2er.com/aspnet/246216.html

猜你在找的asp.Net相关文章