不取消选中其ID在列表中的复选框

时间:2017-12-22 14:51:25

标签: jquery

在我的页面上,我需要阻止其ID在列表中的复选框(哦,对不起,我的意思是'数组'%)被取消选中。即。

for id in ["id1", "id2", "id667"]:
    # no unchecking for this id's checkbox, please!

1 个答案:

答案 0 :(得分:1)

您可以这样做:

for (let id of ["id1", "id2", "id667"]) {
  $('#' + id).prop('disabled', true);
}

我们只是禁用此处的给定复选框,以防止被点击或再次更改。

  

注意:不应使用 for ... in 来迭代索引顺序很重要的Array