📅  最后修改于: 2022-03-11 15:03:11.033000             🧑  作者: Mango
$("#lbCountries").click(function () {
$("#lbCountires option").each(function (index) {
if ($(this).is(':selected')) {
$(this).prop('disabled', false);
}
else {
$(this).prop('disabled', true);
}
});
});