jQuery獲取Select選擇的Text和Value:
創(chuàng)新互聯(lián)長(zhǎng)期為上1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為宿城企業(yè)提供專業(yè)的成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì),宿城網(wǎng)站改版等技術(shù)服務(wù)。擁有十年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
1. var checkText=jQuery("#select_id").find("option:selected").text(); //獲取Select選擇的Text
2. var checkValue=jQuery("#select_id").val(); //獲取Select選擇的option Value
3. var checkIndex=jQuery("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值
4. var maxIndex=jQuery("#select_id option:last").attr("index"); //獲取Select最大的索引值
jQuery添加/刪除Select的Option項(xiàng):
1. jQuery("#select_id").append(""); //為Select追加一個(gè)Option(下拉項(xiàng))
2. jQuery("#select_id").prepend(""); //為Select插入一個(gè)Option(第一個(gè)位置)
3. jQuery("#select_id option:last").remove(); //刪除Select中索引值最大Option(最后一個(gè))
4. jQuery("#select_id option[index='0']").remove(); //刪除Select中索引值為0的Option(第一個(gè))
5. jQuery("#select_id option[value='3']").remove(); //刪除Select中Value='3'的Option
6. jQuery("#select_id option[text='4']").remove(); //刪除Select中Text='4'的Option
內(nèi)容清空:
jQuery("#select_id").empty();