只需删除分隔它们的 div,这对我有用,我可以Ticket []
接受。
另外,CheckBoxFor
如果你知道它是一个CheckBox
<div>
@Html.LabelFor(model => model.Ticket)
@Html.CheckBoxFor(model => model.Ticket)
@Html.ValidationMessageFor(model => model.Ticket)
</div>
我也使用了这个代码,因为 OP 说这是他的代码
<div class="editor-field">
@Html.Label("SMS Alerts?")
@Html.EditorFor(model => model.GetAll)
</div>
我明白了GetAll []
GetAll
在bool
我的 ViewModel 中
也用了这个
<div>
@Html.LabelFor(model => model.GetAll)
@Html.EditorFor(model => model.GetAll)
</div>
我明白了GetAll []
和这个
<div class="editor-field">
@Html.LabelFor(model => model.GetAll)
@Html.EditorFor(model => model.GetAll)
</div>
我明白了GetAll []
在每种情况下,我的测试都是标签和复选框是内联的