禁用

$("#priceGroupType option[value='1']").prop('disabled', true);

$("#priceGroupType").select2({
minimumResultsForSearch: -1
});

  

启用

$("#priceGroupType option[value='1']").prop('disabled', false);
$("#priceGroupType option[value='1']").removeProp('disabled');

$("#priceGroupType").select2({
minimumResultsForSearch: -1
});

  

minimumResultsForSearch: -1是取消搜索框,如果需要搜索框就不要设置

相关文章:

  • 2021-09-16
  • 2021-08-28
  • 2021-11-05
  • 2022-12-23
猜你喜欢
  • 2021-07-22
  • 2022-12-23
  • 2021-08-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案