本文介绍了如何设置在剃刀视图中的复选框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在默认情况下选中一个复选框:
我尝试了所有的这些,没有什么是检查我的复选框 -
@ Html.CheckBoxFor(M = GT; m.AllowRating,新的{@value =真})@ Html.CheckBoxFor(M = GT; m.AllowRating,新{@checked =真})@ Html.CheckBoxFor(M = GT; m.AllowRating,新{@checked =真})@ Html.CheckBoxFor(M = GT; m.AllowRating,新{@checked =选中})
解决方案
您应该在 AllowRating
属性设置为真正
preferably在控制器或模型。结果
像其他投入,该复选框的状态反映属性的值。
I need to check a checkbox by default:
I tried all of these, nothing is checking my checkbox -
@Html.CheckBoxFor(m => m.AllowRating, new { @value = "true" })
@Html.CheckBoxFor(m => m.AllowRating, new { @checked = "true" })
@Html.CheckBoxFor(m => m.AllowRating, new { @checked = true })
@Html.CheckBoxFor(m => m.AllowRating, new { @checked = "checked"})
解决方案
You should set the AllowRating
property to true
, preferably in the controller or model.
Like other inputs, the checkbox's state reflects the value of the property.
这篇关于如何设置在剃刀视图中的复选框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!