11.Layui后台异步加载select下拉菜单

11.Layui后台异步加载select下拉菜单_第1张图片

前端html页面

    
    

js脚本

$.ajax({
    url:"/selectServer",
    type:"GET",
    dataType:"json",
    success:function(result){
        var list = result;    //返回的数据
        var server = document.getElementById("server"); //server为select定义的id
        for(var p in list){
            var option = document.createElement("option");  // 创建添加option属性
            option.setAttribute("value",p); // 给option的value添加值
            option.innerText=list[p];     // 打印option对应的纯文本 
            server.appendChild(option);           //给select添加option子标签
            form.render("select");            // 刷性select,显示出数据
} } });}

后端controller返回JSONObject给前端作显示处理,如:{"xx":"aaa","yy":"bbb"}

@RequestMapping("/selectServer")
    public JSONObject selectServer(HttpServletRequest request){
        List configContent = new ArrayList();
        configContent = configService.getConfigList(null,9,null);
        JSONObject ServerJson = new JSONObject();
        for (Config c : configContent) {
            ServerJson.put(c.getConfigkey(), c.getConfigContent());
        }
        log.info("request:selectServer, response:" + ServerJson);
        return ServerJson;
    }

你可能感兴趣的:(前端,layui,前端,javascript)