📅  最后修改于: 2022-03-11 15:02:11.696000             🧑  作者: Mango
$('#fromtime').on('change', function(){
var totimeValues = [];
var fromTime = $(this).val();
$('#totime option').filter(function() {
return $(this).val() <= fromTime;
}).prop('disabled', true);
});