Can I add a class to an HTML.ActionLink in MVC3

前端 未结 5 1982
名媛妹妹
名媛妹妹 2020-12-02 17:52

I have this code and would like to add a class to the link. Is it possible to do this in MVC3?

Html.ActionLink(\"Create New\", \"Create\")
相关标签:
5条回答
  • 2020-12-02 18:27

    According to the documentation, this should do the trick:

    Html.ActionLink("LinkText", "Action", "Controller", new { }, new {@class="css class"})
    

    Edit: Thanks for noticing Dampe, I updated the code sample.

    0 讨论(0)
  • 2020-12-02 18:29

    Yes, you can just add another parameter with object representing css class:

    Html.ActionLink("Create New", "Create", CONTROLLERNAME, null, new { @class= "yourCSSclass"} )
    

    It can be translated to:

    Html.ActionLink(link text, action name, controller name, route values object, html attributes object)
    

    Edit:

    To add custom styles, use this:

    Html.ActionLink(
    "Create New",
    "Create",
    CONTROLLERNAME,
    null,
    new { @class= "yourCSSclass", @style= "width:100px; color: red;" }
    )
    
    0 讨论(0)
  • 2020-12-02 18:44

    You can use the ActionLink overload which takes an htmlAttributes parameter to add a class to the generated element:

    Html.ActionLink("Create New", "Create", new {}, new { @class = cssClass });
    
    0 讨论(0)
  • 2020-12-02 18:48
    @Html.ActionLink("ClickMe",  // link text
                     "Index", // action name
                     "Home",  // controller 
                     new { id = 2131 }, // (optional) route values
                     new { @class = "someClass" }) // html attributes
    
    0 讨论(0)
  • 2020-12-02 18:49
    Html.ActionLink("Create New", "Create", null, htmlAttributes: new { @class = "className" })
    
    0 讨论(0)
提交回复
热议问题