当前位置: 代码迷 >> .NET组件控件 >> MVC3 + jquery +ajax 来实现动态的下拉框,该怎么解决
  详细解决方案

MVC3 + jquery +ajax 来实现动态的下拉框,该怎么解决

热度:3587   发布时间:2013-02-25 00:00:00.0
MVC3 + jquery +ajax 来实现动态的下拉框
<script type="text/javascript">
  $(document).ready(function(){
  GetByJquery();
  $("#courses").change(function(){ GetChapters()});
  });
  function GetByJquery(){
  $("#courses").empty();
   
  $.getJSON("/Question/GetCourseList", function(data) {
  $.each(data,function (i,item) {
  $("<option></option>").val(item["courseID"]).text(item["courseName"]).appendTo($("#courses"));
  });
  alert("111");
  GetChapters();//《=这个地方没有进入函数的调用
  });
  }
  function GetChapters() {


  $("#chapters").empty(); //清空章节SELECT控件
   
  var url = "/Question/GetChapterList/" + $("#courses").val();
  $.getJSON(url,function(data){
  $.each(data,function (i,item) {
  $("<option></option>").val(item["chapterID"]).text(item["chapterName"]).appendTo($("#chapters"));
  });
  });
  }  
</script>

------解决方案--------------------------------------------------------
没弄明白LZ要做什么……
------解决方案--------------------------------------------------------
LZ在51aspx上找个例子吧,我刚看过
  相关解决方案