在我的页面上,我需要阻止其ID在列表中的复选框(哦,对不起,我的意思是'数组'%)被取消选中。即。
for id in ["id1", "id2", "id667"]:
# no unchecking for this id's checkbox, please!
答案 0 :(得分:1)
您可以这样做:
for (let id of ["id1", "id2", "id667"]) {
$('#' + id).prop('disabled', true);
}
我们只是禁用此处的给定复选框,以防止被点击或再次更改。
注意:不应使用 for ... in 来迭代索引顺序很重要的
Array
。