根据另一个选择框中的选择填充一个选择框 - JQuery?

时间:2011-05-02 18:48:16

标签: jquery

我正在尝试根据第一个选择框中的选择填充一个选择框。我在网上看了一下,发现了很多关于硬编码选项的有用信息,但是我需要我的选项来自查询(比如coldfusion中的cfquery)。我知道cfquery是服务器端的,所以我不能将它包含在我的jquery中,但还有其他选择吗?

我使用的是以下示例:

HTML:

<select id="counties">
    <option> </option>
    <option> somerset </option>
    <option> hertfordshire </option>
</select>

<select id="towns" disabled="true">
</select>

JS:

var countyTowns = [
    ["Bath", "Bristol"],
    ["Letchworth", "Hitchin"]
];

$("#counties").change(function() {
    var county = this.selectedIndex - 1;
    $("#towns").empty();
    if (county === -1) {
        $("#towns").attr("disabled", true);
    } else {
        var towns = countyTowns[county];
        for (var i = 0; i < towns.length; i++) {
            $("#towns").append($("<option></option>").text(towns[i]));
        }
        $("#towns").attr("disabled", false);
    }
});

我需要的是城镇是动态的,能够从数据库中读取。

非常感谢任何帮助!

由于

4 个答案:

答案 0 :(得分:13)

答案 1 :(得分:0)

我几乎遇到相同的问题,我通过 Ajax从控制器获取解决了问题,以从用户选择的基于数据库的国家/地区中读取(如您所要求的从数据库中读取数据的方式) ):

 <script>
        $(document).ready(function () {
           $("#counties").on('change', function () {
                var selectedItem = $(this).val();
                var ddlStates = $("#towns");
                var statesProgress = $("#states-loading-progress");
                statesProgress.show();
                $.ajax({
                    cache: false,
                    type: "GET",
                    url: "@(Url.RouteUrl("GetStatesByCountryId"))",
                    data: { "countryId": selectedItem, "addSelectStateItem": "true" },
                    success: function (data) {
                        ddlStates.html('');
                        $.each(data, function (id, option) {
                            ddlStates.append($('<option></option>').val(option.id).html(option.name));
                        });
                        statesProgress.hide();
                    },
                    error: function (xhr, ajaxOptions, thrownError) {
                        alert('Failed to retrieve states.');
                        statesProgress.hide();
                    }
                });
            });
        });
    </script>

在控制器上:

  public virtual IActionResult GetStatesByCountryId(string countryId, bool addSelectStateItem)
    {
        var model = _countryModelFactory.GetStatesByCountryId(countryId, addSelectStateItem);
        return Json(model);
    }

然后在数据访问层上,我从基于数据库的国家/地区获取城镇。 如果您还需要知道如何从db获取数据,则可以将其添加为答案。

答案 2 :(得分:0)

尝试一下

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
 $("#counties").change(function() {
    if($(this).val()){
    $("#towns").attr('disabled',false);

   
  //var towns = countyTowns[county];
   // for (var i = 0; i < towns.length; i++) {
      //  $("#towns").append($("<option></option>").text(towns[i]));
   // }


      optionText = 'Premium'; 
      optionValue = 'premium'; 
  
      $('#towns').append('<option value="${optionValue}"> 
                                       ${optionText} 
                                  </option>'); 
    }
    else {
     $("#towns").attr('disabled',true);
     $("#towns").empty();
          
        
    }
  });
});
</script>
</head>
<body>

<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<select id="counties">
    <option> </option>
    <option> somerset </option>
    <option> hertfordshire </option>
</select>

<select id="towns" disabled="true">
</select>


</body>
</html>

答案 3 :(得分:0)

与使用AJAX调用收集的列表相比,使用编码到页面中的值列表具有好处和风险。

如果列表特别长或基于当前用户,则AJAX调用会很好。如果列表相对简单/较小并且不太可能经常更改,则硬编码列表可能会很好。

要使用硬编码列表,请使用以下代码:

var selectableValues = [
    {
    'title' : 'Words Starting With A' ,
    'values' : [
      'Apple' ,
      'Aardvark' ,
      'Alfalfa'
    ]
  } ,
  {
    'title' : 'Words Starting With B' ,
    'values' : [
      'Banana' ,
      'Beyond' ,
      'Belong'
    ]
  }
];

var $select_one = $select_two = false;

jQuery(function($){

  $select_one = $('#select_one');
  $select_two = $('#select_two');
  
    // Populate Select One
  $.each(selectableValues, function(k,v){
    $select_one.append('<option value="'+k+'">'+v.title+'</option>');
  });
  $('option:first',$select_one).text('Select...');
  $select_one.on('change',function(){
    populateSelectTwo(this.value);
  });

});

function populateSelectTwo( parentKey ){
  $('option',$select_two).remove();
  $select_two.append('<option value="">Select...</option>');
  $.each(selectableValues[parentKey].values, function(k,v){
    $select_two.append('<option value="'+k+'">'+v+'</option>');
  });
}

JSFiddle-https://jsfiddle.net/lucanos/8fy4m7vp/