jQuery - Select相關
判斷select選項中是否存在 value="paraValue" 的Item
$("#selectid option[value='paraValue']").length>0
向select選項中加入一個Item
$("#selectid").append("<option value=''>1111<option>");
從select選項中刪除一個Item
$("#selectid").remove("<option value=''>1111<option>");
修改select選項中 value="paraValue" 的text為 "paraText"
$("#selectid option:selected").attr("value","paraValue").attr("text","paraText");
設定select中 text="paraText" 的第一個Item為選中
$("#selectid option[text='paraText']").attr("selected","true");
設定select中 value="paraValue" 的Item為選中
$("#selectid option[value='paraValue']").attr("selected","true")
設定select中第一個Item為選中
$("#selectid option").eq(0).attr('selected', 'true');
得到select的當前選中項的value
$("#selectid").val();
得到select的當前選中項的text
$("#selectid").text();
得到select的當前選中項的Index
$("#selectid").get(0).selectedIndex;
清空select的項
$("#selectid").empty();
Ajax迴圈生成Select
$.each(data.list, function(i,item){
$("#foa_foa_edit_foaEngineer" + tabId).append("<option value='" + item.id + "'>" + item.name + "</option>");
$("#selectid option[value='paraValue']").length>0
向select選項中加入一個Item
$("#selectid").append("<option value=''>1111<option>");
從select選項中刪除一個Item
$("#selectid").remove("<option value=''>1111<option>");
修改select選項中 value="paraValue" 的text為 "paraText"
$("#selectid option:selected").attr("value","paraValue").attr("text","paraText");
設定select中 text="paraText" 的第一個Item為選中
$("#selectid option[text='paraText']").attr("selected","true");
設定select中 value="paraValue" 的Item為選中
$("#selectid option[value='paraValue']").attr("selected","true")
設定select中第一個Item為選中
$("#selectid option").eq(0).attr('selected', 'true');
得到select的當前選中項的value
$("#selectid").val();
得到select的當前選中項的text
$("#selectid").text();
得到select的當前選中項的Index
$("#selectid").get(0).selectedIndex;
清空select的項
$("#selectid").empty();
Ajax迴圈生成Select
$.each(data.list, function(i,item){
$("#foa_foa_edit_foaEngineer" + tabId).append("<option value='" + item.id + "'>" + item.name + "</option>");
});
相關文章
- jQuery select下拉選單的相關操作jQuery
- layui select 相關UI
- SQL Server中的SELECT會阻塞SELECT相關資料SQLServer
- JQuery 拖拽以及相關外掛jQuery
- jQuery select事件jQuery事件
- jquery 操作selectjQuery
- jQuery陣列相關操作程式碼jQuery陣列
- JQuery select選中值jQuery
- jQuery select 觸發事件jQuery事件
- jquery動態設定selectjQuery
- jQuery 美化select下拉選單jQuery
- JQuery 對 Select option 的操作jQuery
- jquery set selected for select elementjQuery
- 關於jquery控制select下拉框自動展開問題jQuery
- 【jquery】select下拉框賦值jQuery賦值
- jQuery操作select下拉常用程式碼jQuery
- jQuery原始碼分析之select()方法jQuery原始碼
- jquery如何操作select下拉選單jQuery
- jQuery - remove select option based on text not valuejQueryREM
- jquery裡操作json相關的方法和例項jQueryJSON
- jquery操作select(取值,設定選中)jQuery
- jQuery select下拉選單復位效果jQuery
- jQuery操作select下拉選單程式碼jQuery
- Jquery 動態增加option及獲取值 遍歷option相關方法jQuery
- jQuery的radio,checkbox,select操作jQuery
- jQuery操作select下拉選單常用程式碼jQuery
- jQuery select下拉選單readonly只讀jQuery
- jQuery取得select選擇的文字與值jQuery
- Django筆記十三之select_for_update等選擇和更新等相關操作Django筆記
- jquery 透過顯示值 設定 select boxjQuery
- jQuery Validate對select下拉選單驗證jQuery
- jquery操作select下拉選單簡單介紹jQuery
- jQuery美化select下拉選單程式碼例項jQuery
- jQuery操作select下拉選單程式碼例項jQuery
- 利用jQuery模擬實現select下拉框jQuery
- jquery select選中表單特效三級聯動jQuery特效
- JQuery 獲取select被選中的value和textjQuery
- jquery select下拉選單新增或者刪除option項jQuery