gpt4 book ai didi

asp.net-mvc - 如何将带连字符和冒号的属性添加到 Razor 中的 Html Helper 方法? (vuejs 语法)

转载 作者:搜寻专家 更新时间:2023-10-30 22:16:32 25 4
gpt4 key购买 nike

我想在下面的 html 辅助方法中添加 v-on:click@click:

@Html.TextBoxFor(x => x.ItnScanCaseCode, new { @id="txtid",@click = "onchangeevent();" })

怎么做?

最佳答案

您可以像这样为 htmlAttributes 使用 Dictionary:

@Html.TextBoxFor(x => x.ItnScanCaseCode, htmlAttributes: new Dictionary<string, object> {
{ "v-on:click", "onchangeevent()" },
{ "id", "txtid" }
})

关于asp.net-mvc - 如何将带连字符和冒号的属性添加到 Razor 中的 Html Helper 方法? (vuejs 语法),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54671788/

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