我有一个带有txo字段,下拉列表和输入文本字段的表单,并且我想实现它们之间的关系,这意味着如果我从选择列表中选择一个值,我想呈现输入文本的值,我有要将选择列表的值发送到服务器,并基于它,我必须返回输入文本的值: 这是我的看法:
def rander_plage_value(request):
indice_id = request.GET.get('ind_val')
plage=Plage.objects.get(indice=indice_id, etat=True)
return render(request, 'ireapp/includes/partial_rang_form.html',
{'plage':plage})
这是我的Java脚本文件:
$(“#id_indice”)。change(function(){
var url = $(“#rangForm”)。attr(“ data-plages-url”); //获取load_cities
视图的网址
var ind_val = $(this).val(); //从HTML输入中获取所选的国家/地区ID
$.ajax({ // initialize an AJAX request
url: url, // set the url of the request (= localhost:8000/hr/ajax/load-cities/)
data: {
'ind_val': ind_val // add the country id to the GET parameters
},
//dataType: 'json',
success: function (data) { // `data` is the return of the `load_cities` view function
$("#id_plage").html(data);
}
});
});