jquery操作select下拉選單簡單介紹
由於select下拉使用的頻繁,所以對於它的操作必須要頻繁,下面介紹一下如何使用jquery操作select下拉選單。
一.獲取value和text值:
[JavaScript] 純文字檢視 複製程式碼var checkText=$("#selId").find("option:selected").text();//獲取選中option項的文字值。 var checkValue=$("#selId").val();//獲取選中的option項的value值。 var checkIndex=$("#selId").get(0).selectedIndex;//獲取選中option項的索引值。 var maxIndex=$("#selId option:last").attr("index");//獲取option項的最大索引值
二.設定value和text值:
[JavaScript] 純文字檢視 複製程式碼$("#selId").get(0).selectedIndex=1;//將索引值為1的option項選中。 $("#selId").val("thevalue");//設定select下拉選單的value值為"thevalue"。 $("#selId option[text='antzone']").attr("selected",true);//將text值為antzone的項選中。
三.新增或者刪除option項:
[JavaScript] 純文字檢視 複製程式碼$("#selId").append("<option value='antzone'>螞蟻部落</option>");//為select下拉選單追加一個option項 $("#selId").prepend("<option value='0'>請選擇</option>");//在select下拉選單開頭新增一個option項。 $("#selId option:last").remove();//刪除Select選單最後一個option。 $("#selId option[index='0']").remove();//刪除索引值為0的option項。 $("#selId option[value='antzone']").remove();//刪除value屬性值為antzone的option。 $("#selId option[text='螞蟻部落']").remove();//刪除text值為螞蟻部落的option。
相關文章
- jQuery 美化select下拉選單jQuery
- jQuery Validate對select下拉選單驗證jQuery
- JavaScript動態操作select下拉選單JavaScript
- HTML select 下拉選單HTML
- HTML select下拉選單HTML
- jQuery Validate簡單介紹jQuery
- 圓角select下拉選單
- 模擬select下拉選單詳解
- jQuery和css3超讚select下拉選單框美化外掛jQueryCSSS3
- 選擇select下拉選單網頁跳轉網頁
- select下拉選單跳轉效果程式碼
- jQuery與CSS二級下拉選單jQueryCSS
- 設定select下拉選單的預設選中項
- 迴圈方式為select下拉選單新增年份
- jquery實現四級級聯下拉選單jQuery
- jQuery 淡入淡出效果下拉導航選單jQuery
- HTML+CSS+JQuery實現下拉選單滑鼠懸浮顯示下拉選單,取消隱藏HTMLCSSjQuery
- Map簡單介紹
- SVG簡單介紹SVG
- Clickjacking簡單介紹
- 【Pandas】簡單介紹
- ActiveMQ簡單介紹MQ
- JSON簡單介紹JSON
- RPC簡單介紹RPC
- Python簡單介紹Python
- KVM簡單介紹
- RMI簡單介紹
- HTML簡單介紹HTML
- HTML 簡單介紹HTML
- JavaScript 簡單介紹JavaScript
- CSS 簡單介紹CSS
- ajax簡單介紹
- form表單的簡單介紹ORM
- JQuery實現絢麗的橫向下拉選單jQuery
- jQuery 緩衝效果二級導航下拉選單jQuery
- 幽靈選單介紹;
- Relief 特徵選擇演算法簡單介紹特徵演算法
- jquery操作select(取值,設定選中)jQuery
- 關於python操作excel,xlwt,xlwd,最簡單的操作介紹PythonExcel