📅  最后修改于: 2022-03-11 15:02:28.501000             🧑  作者: Mango
$(document).on('change', 'select', function () {
var value = $(this).val();
$(this).find('option[value="' + value + '"]').attr("selected", "selected");
})