89

作品

<a href="@Url.Action("edit", "markets", new { id = 1 })" 
            data-rel="dialog" data-transition="pop" data-icon="gear" class="ui-btn-right">Edit</a>

不工作 - 为什么?

@Html.ActionLink("Edit", "edit", "markets", new { id = 1 }, new {@class="ui-btn-right", data-icon="gear"})

看来您不能将 data-icon="gear" 之类的东西传递给 htmlAttributes?

建议?

4

3 回答 3

207

问题是您的匿名对象属性data-icon的名称无效。C# 属性的名称中不能有破折号。有两种方法可以解决这个问题:

使用下划线而不是破折号(MVC 会在发出的 HTML 中自动将下划线替换为破折号):

@Html.ActionLink("Edit", "edit", "markets",
      new { id = 1 },
      new {@class="ui-btn-right", data_icon="gear"})

使用字典中的重载:

@Html.ActionLink("Edit", "edit", "markets",
      new { id = 1 },
      new Dictionary<string, object> { { "class", "ui-btn-right" }, { "data-icon", "gear" } });
于 2010-11-05T22:35:14.703 回答
26

用下划线替换所需的连字符;它将自动呈现为连字符:

@Html.ActionLink("Edit", "edit", "markets",
    new { id = 1 },
    new {@class="ui-btn-right", data_icon="gear"})

变成:

<form action="markets/Edit/1" class="ui-btn-right" data-icon="gear" .../>
于 2011-12-22T06:50:52.393 回答
-6
@Html.ActionLink("display name", "action", "Contorller"
    new { id = 1 },Html Attribute=new {Attribute1="value"})
于 2016-08-18T07:12:53.517 回答