gpt4 book ai didi

asp.net - 如何在asp.net MVC中将HTML5数据属性添加到Html.TextBox?

转载 作者:行者123 更新时间:2023-12-03 23:22:03 25 4
gpt4 key购买 nike

Html.TextBox语法为:

public static MvcHtmlString TextBox(this HtmlHelper htmlHelper, string name, 
object value, object htmlAttributes);


因此,我将数据属性放在 htmlAttributes中。我努力了

@Html.TextBox("date",Model.Date,new { data-myid="aaa"})


但这对我不起作用。

最佳答案

尝试使用下划线_字符。

@Html.TextBox("date",Model.Date,new { data_myid="aaa"})


运行时会将其转换为 data-myid

关于asp.net - 如何在asp.net MVC中将HTML5数据属性添加到Html.TextBox?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15727882/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com