Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何指定 Html.CheckBox 的类?
我正在尝试这样的事情,但这不起作用。
@Html.CheckBox("chk_", abc.IsChecked, new { @class="checkbox" })
谢谢 !!
指定类时,编译器会检查以确认 bool 值不可为空,我将数据类型从可空 bool 固定为 bool,并且运行良好。