jQuery select下拉選單的相關操作
select下拉選單是最為常用的表單元素之一,下面就介紹一下如何使用jQuery操作select下拉選單。
一.獲取選中option項的文字值:
[JavaScript] 純文字檢視 複製程式碼$("#theselect").find("option:selected").text();
二.獲取選中option項的value值:
[JavaScript] 純文字檢視 複製程式碼$("#theselect").val();
三.獲取選中option項的索引值:
[JavaScript] 純文字檢視 複製程式碼$("#theselect").get(0).selectedIndex=index;
四.設定選中option項的索引值:
[JavaScript] 純文字檢視 複製程式碼$("#theselect").get(0).selectedIndex=index;
五.設定選中option想的value值:
[JavaScript] 純文字檢視 複製程式碼$("#theselect").attr("value","Normal"); $("#theselect").val("Normal"); $("#theselect").get(0).value=value;
六.設定option的一些其他操作:
[JavaScript] 純文字檢視 複製程式碼$("#theselect").append("<option value='Value'>Text</option>");//新增一項option $("#theselect").prepend("<option value='0'>請選擇</option>");//在前面插入一項option $("#theselect option:last").remove();//刪除索引值最大的Option $("#theselect option[index='0']").remove();//刪除索引值為0的Option $("#theselect option[value='3']").remove();//刪除值為3的Option $("#theselect option[text='4']").remove();//刪除TEXT值為4的Option
七.清空select下拉項:
[JavaScript] 純文字檢視 複製程式碼$("#theselect").empty();
相關文章
- jquery如何操作select下拉選單jQuery
- jQuery操作select下拉選單程式碼jQuery
- jquery操作select下拉選單簡單介紹jQuery
- jQuery操作select下拉選單常用程式碼jQuery
- jQuery操作select下拉選單程式碼例項jQuery
- jQuery 美化select下拉選單jQuery
- jQuery select下拉選單復位效果jQuery
- JavaScript動態操作select下拉選單JavaScript
- jQuery select下拉選單readonly只讀jQuery
- jQuery Validate對select下拉選單驗證jQuery
- jQuery美化select下拉選單程式碼例項jQuery
- jQuery操作select下拉常用程式碼jQuery
- jquery select下拉選單新增或者刪除option項jQuery
- jQuery刪除select下拉選單中所有option項jQuery
- jQuery - Select相關jQuery
- HTML select下拉選單HTML
- HTML select 下拉選單HTML
- jquery如何獲取select下拉選單選中項的值和文字jQuery
- jquery實現的獲取選中select下拉選單的值和文字jQuery
- jquery新增或者刪除select下拉選單項程式碼jQuery
- 原生javascript操作select下拉選單程式碼例項JavaScript
- 圓角select下拉選單
- select下拉選單 change事件事件
- jQuery實現的獲取select下拉選單的text和value值jQuery
- 選中select下拉選單項提交表單
- jquery實現的獲取select下拉選單value和文字內容jQuery
- jQuery 二級下拉選單jQuery
- 可以輸入select下拉選單
- 下拉選單框select常用點
- 模擬select下拉選單詳解
- select下拉選單二級聯動
- select下拉選單新增不重複項
- js自定義select下拉選單效果JS
- JavaScript 動態生成select下拉選單JavaScript
- select下拉選單 readonly 只讀
- JavaScript動態建立select下拉選單JavaScript
- 選擇select下拉選單網頁跳轉網頁
- 如何設定select下拉選單可以多選