1

我正在尝试在选择一个复选框时禁用其他复选框,如果再次取消选中,则再次启用。
下面是我发现在标准复选框的示例小提琴中工作的代码片段,但我无法为复选框复制此代码,有人可以推荐我需要进行的更改以使其在复选框中工作?

    <script>
    $('#chkItems').change(function () {
        $(this).siblings('#chkItems').prop('disabled', this.checked)
    });
   </script>

下面是我的复选框,我称之为

@Html.CheckBoxFor(modelItem => item.IsDisplayImage, new { id = "chkItems" })
4

2 回答 2

0

如果要使用复选框持久化,您可以使用此代码,否则最好使用单选按钮

HTML

<label class="checkbox-inline check">
      <input type="checkbox" name="skills" id="radio" value="1"> 1
</label>
<label class="checkbox-inline check">
      <input type="checkbox" name="skills" value="2"> 2
</label>
<label class="checkbox-inline check">
      <input type="checkbox" name="skills" value="3"> 3
</label>

JS:

$('.check input:checkbox').click(function() {
    $('.check input:checkbox').not(this).prop('checked', false);
});  

检查这个 jsfiddle 的演示

您可以将单选按钮用作:

<form>
  <input type="radio" name="gender" value="male" checked> Male<br>
  <input type="radio" name="gender" value="female"> Female<br>
  <input type="radio" name="gender" value="other"> Other  
</form> 
于 2016-04-13T08:35:11.587 回答
0

好的。例如,您有ForRadioButtonsModel类似的模型

public class ForRadioButtonsModel
    {
        public int Id { get; set; }
        public bool IsDisplayImage { get; set; }
    }

On View You pass 此模型的集合或包含此集合的模型

return View((List<ForRadioButtonsModel>) collection);

比在视图中您可以在下一步创建 RadioGroup

@foreach (var item in Model) <-- Model is of type List<ForRadioButtonsModel>
{
     @Html.RadioButtonFor(m => item.IsDisplayImage, item.IsDisplayImage) 
}

这将呈现下一个 HTML

<input checked="checked" id="item_IsDisplayImage" name="item.IsDisplayImage" type="radio" value="True">
<input checked="checked" id="item_IsDisplayImage" name="item.IsDisplayImage" type="radio" value="False">

因此,您将拥有名称相同但值不同的单选按钮

于 2016-04-13T08:54:55.973 回答