jquery动态为select 绑定数据

 

 

 function getChapters(courseid) {

            $.ajax({
                url: '/chapter/getChapersByUidCourseID?courseID=' + courseid,
                success: function (res) {
                    $("#chapterName").find("option").remove();//添加新值 删除旧值
                    console.log(res);

                    $("#chapterName").prepend("<option value='无'>无</option>");//添加第一个option值
                    for (var i = 0; i < res.length; i++) { //遍历获取的资源 循环逐个添加到select中
                        $("#chapterName").append("<option value='" + res[i].chapterName + "'>" + res[i].chapterName + "</option>");
                    }

                }
            });

        }

 

posted on 2022-09-20 21:20  码农at突泉  阅读(505)  评论(0编辑  收藏  举报