gpt4 book ai didi

带Bootstrap编辑器的Asp.net MVC5

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

我进行了一些修改,以使表单使用EditorFor(和使用MVC5),但是我找不到设置文本框大小的方法。
我尝试了艰苦的方法:

@Html.EditorFor(model => model.Nom, new{@style="width:400px"})

但这没有用..
有没有简单的方法?

最佳答案

在版本5之前的MVC中,EditorFor不允许您以这种方式指定html元素。它只能在非编辑器上下文中使用,例如TextBoxFor等。

在MVC 5.1中,他们添加了在编辑器模板中指定html属性的功能,您现在可以执行以下操作:

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

关于带Bootstrap编辑器的Asp.net MVC5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21975258/

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