下面給大介紹了jquery對select的操作介紹,非常不錯,具有內容介紹如下所示:
select的html標籤如下:
<select class="xxx" id="yyy"><option></option>...<option></option></select>
1.valueue為「lll」的選取「lll」
$('#yyy').val("lll");或者$('.xxx').val("lll")可用來讓select自動選取某一項,例如選取從背景傳來的值和option的value相同的項2.設定text為「lll」的option
3.取得目前選取項目的值
$('#yyy').val();或$('.xxx').val();
4.取得目前選取項目的text
$('#yyy').find("option[text="lll"]").attr("selected","selected");或者$('。xxx').find("option[text="lll"]").attr("selected","true");
以上所述是小編給大家介紹的jQuery中的select操作詳解