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>"); } } }); }
标签:jquery,function,option,res,绑定,添加,chapterName,select From: https://www.cnblogs.com/sunzzhankui/p/16712610.html