📌  相关文章
📜  在选择中禁用除所选之外的其他选项 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:11.033000             🧑  作者: Mango

代码示例1
$("#lbCountries").click(function () {
     $("#lbCountires option").each(function (index) {
        if ($(this).is(':selected')) {
            $(this).prop('disabled', false);
         }
         else {
            $(this).prop('disabled', true);
         }
      });
  });