bootstrap多选按钮_bootstrap复选框和单选按钮

复选框和单选按钮标签包含在标签中

选项 1

选项 2

value="option1" checked> 选项 1

value="option2">

选项 2 - 选择它将会取消选择选项 1

内联的复选框和单选按钮,

对一系列复选框和单选框使用 .checkbox-inline 或 .radio-inline class,控制它们显示在同一行上。

选项 1

选项 2

选项 3

value="option1" checked> 选项 1

value="option2"> 选项 2

基架自动创建的Create 视图的代码:

如果是一个对象的成员是枚举类型,基架的 Create视图会自动生成枚举类型的下拉菜单。 @Html.EnumDropDownListFor(model => model.NotificationType, htmlAttributes: new { @class =

"form-control" })

@Html.LabelFor(model => model.NotificationType, htmlAttributes: new { @class = "control-label col-md-2" })

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

虽然下面用的是@Html.EditorFor方法,但是 MVC框架能识别它是一个boolean类型,因此,会使用checkbox来渲染视图。

@Html.LabelFor(model => model.IsDismissed, htmlAttributes: new { @class = "control-label col-md-2" })

@Html.EditorFor(model => model.IsDismissed)

@Html.ValidationMessageFor(model => model.IsDismissed, "", new { @class = "text-danger" })

@Html.ValidationMessageFor(model => model.NotificationType, "", new { @class = "text-danger" })

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值