Jquery 動態增加option及獲取值 遍歷option相關方法
HTML:
<select id="types" name="types" lay-verify="required" placeholder="所有檢查類別">
<option value="">所有檢查類別</option>
</select>
JS呼叫Ajax獲取json資料並渲染:
window.onload = function() {
//宣告form
var form;
layui.use('laydate', function(){
form = layui.form;
});
//獲取json資料,在select中顯示
$.ajax({
url: 'url', //表示傳送請求的路徑
type: 'get', //http請求方式
async: false, //同步請求,將鎖住瀏覽器,使用者其他操作必須等待請求完成才可以執行
dataType: 'json', //伺服器返回json資料
error: function(){
alert("系統忙,請稍後再試!");
return false;
},
//請求成功後的回撥函式,由伺服器返回,並根據dataType引數進行處理後的資料;描述狀態的字串
success:function(data){
var result = data.data;
if (result.length > 0) {
for(var i = 0; i < result.length; i++){
$("#types").append("<option value='"+i+"'>"+result[i].types+"</option>");//新增
}
form.render('select'); //重新整理select選擇框渲染
}
}
});
}
JSON資料:
{
"code": 0
,"msg": ""
,"count": 12
,"data": [
{
,"types": "CT"
}
}
相關文章
- jquery獲得option的值和對option進行操作jQuery
- jq動態修改select 的option值,使option值自動選中
- jQuery 遍歷方法jQuery
- 關於WITH GRANT OPTION
- MTK Camera相關的Makefile Option詳解
- jQuery遍歷-slice()方法jQuery
- JQuery 對 Select option 的操作jQuery
- jquery獲取select下拉選中option項的value值jQuery
- jQuery - remove select option based on text not valuejQueryREM
- 關於GRANT賦權時,WITH GRANT OPTION和WITH ADMIN OPTION的使用
- with grant option與with admin option區別
- JS/JQ動態建立(新增)optgroup和option屬性JS
- 遍歷方法 js jquery 我 常用JSjQuery
- jQuery 遍歷jQuery
- 語句審計相關的表是stmt_audit_option_map
- oracle with * option 理解Oracle
- Jumping with Option
- 如何在下拉框Select中動態新增option?
- js如何動態為select下拉選單新增option項JS
- jQuery 遍歷 – 祖先jQuery
- jquery中each的三種遍歷方法jQuery
- JavaScript 獲取select下拉選單所有optionJavaScript
- jQuery.position()方法獲取值為0解決方案jQuery
- WITH CHECK OPTION 詳解
- Using the WITH CHECK OPTION
- 【檢視】with check option
- create view with check optionView
- jquery遍歷節點jQuery
- Jquery之遍歷元素jQuery
- jQuery 遍歷 – 過濾jQuery
- jQuery 遍歷 – 後代jQuery
- 蘋果電腦上神奇的Option鍵,巧用option鍵提升效率蘋果
- jquery select下拉選單新增或者刪除option項jQuery
- jQuery刪除select下拉選單中所有option項jQuery
- jQuery遍歷函式,javascript中的each遍歷jQuery函式JavaScript
- jQuery列表動態增加和刪除jQuery
- The option-critic architecture
- JavaScript select新增optionJavaScript