1

我有两个选择框:一个是国家,另一个是城市。当用户选择一个国家时,该国家的适当城市应填充在数据库中的“城市”中。

我是 jquery 和 javascript 的新手,我不知道如何实现这一点。如果有人给我一个执行此功能的示例代码,我们将不胜感激。我不知道,因为我是脚本语言的新手,所以我几乎被困住了。

我在用python实现的django框架中的一种形式中使用它。

先感谢您

<!DOCTYPE html>
<html>
<head>
  <style>
  div { color:red; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <select name="country" id="country">
    <option value = "india">india</option>
    <option value = "USA">USA</option>
    <option value = "UK">UK</option>
    <option value = "China">China</option>
    <option value = "Sweden">Sweden</option>
    <option value = "Germany">Germany</option>
  </select>

  <select name="cities" id="cities">
  <option value = ""></option>
  </select>  
  <div></div>  

</body>
</html>
4

1 回答 1

0

试试这个:

在您的模板中

 $('#country').change(function() { 
    var value = $(this).attr('value'); 
    var request = $.ajax({
        url: "/getcities/",
        type: "GET",
        data: {country : value},
        dataType: "json",

        success: function(data) {
         //Popluate combo here by unpacking the json
        }
    });


});

在您看来:

def getcities(request)
    if request.method == "GET":
        country = request.GET["country"]
        cities = Cities.objects.filter(country=country)
        results = [{'city': str(city.name), 'id':city.id} for city in cities]
        json = simplejson.dumps(results)
        return HttpResponse(json, mimetype='application/json')

您必须将 url /getcities/ 映射到 urls.py 中的视图。

于 2012-08-07T09:15:11.263 回答