gpt4 book ai didi

asp.net-mvc-3 - 在 razor html 帮助器中传递数据图标属性

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

我想使用 asp.net mvc 3 razor html helper 跟踪 html 代码:

<input type="text" .... .   placeholder="Login" data-icon="user" />

我已经尝试过这个:

@Html.TextBoxFor(m => m.UserName, new { placeholder = "Login", data-icon = "user" })

@Html.TextBoxFor(m => m.UserName, new { placeholder = "Login", @data-icon = "user" })

显示错误:

Invalid anonymous type members declaration.

这可能是由于数据图标中的破折号未被视为属性。如何在文本框字段中添加数据图标属性。

最佳答案

试试这个

@Html.TextBoxFor(m => m.UserName, new { placeholder = "Login", data_icon = "user" })

关于asp.net-mvc-3 - 在 razor html 帮助器中传递数据图标属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11603985/

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