答案 0 :(得分:2)
只需将代码编辑为:
$(document).on("pageinit", function () {
$("#select").on("change", function () {
var selected = $("option:selected", this).length;
if (selected == 3) {
$("option:not(:selected)", this).prop("disabled", true);
$(this).selectmenu("refresh");
}
if (selected < 3) {
$("option:disabled", this).prop("disabled", false);
$(this).selectmenu("refresh");
}
});
});
我们将if (selected == 3) {
缩减为3。