gpt4 book ai didi

asp.net-mvc-4 - 如何在 htmlhelper 中添加 css?

转载 作者:行者123 更新时间:2023-12-02 04:32:46 25 4
gpt4 key购买 nike

在asp.net mvc 4开发中,我编写了以下代码:

@Html.EditorFor(model =>model.CreateTime,new {@class="form-control"}).   

@Html.EditorFor(model =>model.CreateTime,null,new {@class="form-control"})

这两种方法都行不通!当我检查生成的 html 代码时,类元素没有出现。

但是当我编写这些代码时,一切都很好:

@Html.LabelFor(model =>model.CreateTime,new {@class="form-control"})

那么告诉我该怎么做?

最佳答案

@Html.EditorFor() 不支持 HTML 属性。而是使用

@Html.TextBoxFor(model =>model.CreateTime,new {@class="form-control"})

或者如果您想使用 @Html.EditorFor() 那么

@Html.EditorFor(model =>model.CreateTime,"formcontrol",null)

CSS-

<style>
.formcontrol{
// your Code
}
</style>

尚未测试,但可以开始使用。

已编辑

或者使用jquery

$(document).ready(function () {
$('#CreateTime').addClass('form-control');
});

关于asp.net-mvc-4 - 如何在 htmlhelper 中添加 css?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36192634/

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