我正在尝试使用 mvc 让 jquery mobile 来创建单选按钮组。
这就是我所拥有的
<li data-role="fieldcontain">
<fieldset data-role="controlgroup" data-type="horizontal" data-mini="true">
<legend>Gender:</legend>
@* <input type="radio" name="radio-choice-b" id="radio-choice-c" value="on" checked="checked" />
<label for="radio-choice-c">Male</label>
<input type="radio" name="radio-choice-b" id="radio-choice-d" value="off" />
<label for="radio-choice-d">Female</label>
*@
@Html.LabelFor(model=>model.Consumer.IsMale,"Male")
@Html.RadioButtonFor(model => model.Consumer.IsMale, "True",new {value="on",@checked = "checked"})
@Html.LabelFor(model=>model.Consumer.IsMale,"Female")
@Html.RadioButtonFor(model => model.Consumer.IsMale, "False", new {value="off"})
</fieldset>
</li>
看起来像
它不可点击,您可以看到“男性”按钮中有一个单选按钮。
我究竟做错了什么?