layui 自定义动态添加select下拉菜单中的内容展示

1. html部分:

2.js部分:

 //选择仓库内容;
getwarehouse();
function getwarehouse() {
     var warehouse = [];
    layui.$.ajax({ // 使用layui模块化加载
        url: "/api/purchase/warehouseCondition",
        type: 'GET',
        dataType: 'json',
        success: function(datas, textStatus, xhr) {
             var selects='';
             warehouse = datas.data;
           for(var b in warehouse){
                var  its='';
                 selects +=its;
            }
           $("#warehouse").append(selects);
            form.render();//菜单渲染 把内容加载进去
        },
        error: function(xhr, textStatus, errorThrown) {
                    //called when there is an error
        }
   });
}

 

你可能感兴趣的:(layui)