jQuery中的select操作詳解

來源:互聯網
上載者:User
下面給大介紹了jquery對select的操作介紹,非常不錯,具有內容介紹如下所示:

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()

以上所述是小編給大家介紹的jQuery中的select操作詳解

  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.