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>");
});
相關文章
- layui select 相關UI
- SQL Server中的SELECT會阻塞SELECT相關資料SQLServer
- el-select 選擇器相關
- JQuery select選中值jQuery
- jQuery select 觸發事件jQuery事件
- jquery動態設定selectjQuery
- jQuery 美化select下拉選單jQuery
- jQuery的radio,checkbox,select操作jQuery
- 關於jquery控制select下拉框自動展開問題jQuery
- 【jquery】select下拉框賦值jQuery賦值
- jquery裡操作json相關的方法和例項jQueryJSON
- jquery操作select(取值,設定選中)jQuery
- jQuery Validate對select下拉選單驗證jQuery
- jQuery相對運用jQuery
- jquery 透過顯示值 設定 select boxjQuery
- Jquery 動態增加option及獲取值 遍歷option相關方法jQuery
- JQuery 獲取select被選中的value和textjQuery
- Django筆記十三之select_for_update等選擇和更新等相關操作Django筆記
- # 關於select關鍵字語句定義順序# 關於select關鍵字語句執行順序
- Process與Socket,Select與Accept關係
- jQuery和css3超讚select下拉選單框美化外掛jQueryCSSS3
- PHP相關PHP
- AndroidJNI相關Android
- 【Unity】相關Unity
- PDN相關
- Linux相關Linux
- Git相關Git
- Cookie相關Cookie
- 硬碟相關硬碟
- sql相關SQL
- elasticsearch相關Elasticsearch
- CentOS相關CentOS
- swoole 相關
- npm 相關NPM
- bean相關Bean
- RFID相關
- spring 相關Spring
- mysql 相關MySql
- nginx相關Nginx