📅  最后修改于: 2022-03-11 15:02:40.488000             🧑  作者: Mango
$(document).ready(
function(){
var theValue = $('#myId').val();
$('option[value=' + theValue + ']')
.attr('selected',true);
});