带有 id 属性的 Ajax.Actionlink 输出

发布于 2024-08-13 22:04:55 字数 154 浏览 4 评论 0原文

我正在使用 MVC 框架中的 Ajax.Actionlink ,并且一切都与我的目标和部分视图配合良好。但是我发现 html 输出不会将“id”属性添加到生成的 标记中。

有什么办法可以添加吗?

I'm using the Ajax.Actionlink from the MVC framework and everything works fine with my targets and partial views. However I've seen that the html output doesn't add the "id" attribute to the resulting <a href=""></a> tag.

Is there any way how I can add it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

来日方长 2024-08-20 22:04:55

尝试其中一种重载,例如这个

public static string ActionLink(
    this AjaxHelper ajaxHelper,
    string linkText,
    string actionName,
    Object routeValues,
    AjaxOptions ajaxOptions,
    Object htmlAttributes
)

然后您可以指定htmlAttributes 参数中的 id,例如

new { id = "myIdValue" }

Try one of the overloads, like this one:

public static string ActionLink(
    this AjaxHelper ajaxHelper,
    string linkText,
    string actionName,
    Object routeValues,
    AjaxOptions ajaxOptions,
    Object htmlAttributes
)

Then you can specify the id in the htmlAttributes parameter, e.g.

new { id = "myIdValue" }
百思不得你姐 2024-08-20 22:04:55

您需要在对象 htmlAttributes 参数中使用 new { id = "myId" },该参数在其多个构造函数中可用。或者您可以使用 IDictionaryhtmlAttributes 来填充它,该属性也可在其多个构造函数中使用。

You need to use new { id = "myId" } in the object htmlAttributes parameter, available in several of its constructors. Or you can fill it using the IDictionary<string, string> htmlAttributes also available in several of its constructors.

谎言 2024-08-20 22:04:55

我相信您正在寻找 RouteValues 参数。

<%= Ajax.ActionLink("SomeAction", "SomeController", new { id = ID_HERE }, null) %>

I believe you're looking for the routeValues parameter.

<%= Ajax.ActionLink("SomeAction", "SomeController", new { id = ID_HERE }, null) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文