select的html标签如下:<select class="xxx" id="yyy"><option></option>...<option></option></select>
1.设置value为“lll”的option选中
$(‘#yyy‘).val("lll");或者$(‘.xxx‘).val("lll")
可用于让select自动选中某一项,例如选中从后台传来的值和option的value相同的项
2.设置text为“lll”的option选中
$(‘#yyy‘).find("option[text="lll"]").attr("selected","selected");或者$(‘。xxx‘).find("option[text="lll"]").attr("selected","true");
3.获取当前选中项的值
$(‘#yyy‘).val();或者$(‘.xxx‘).val();
4.获取当前选中项的text
$(‘#yyy‘).find("option:selected").text()或者$(‘#yyy option:selected‘).text()
时间: 2024-10-10 18:08:15