我有两个字段,一个是'指定'另一个是分配给谁'在我的HTML表单中。我需要做的是提供一个自动填充值列表,分配指定更改的字段。 为此,我这样做: -
string = 'LVPV(filler)PITN(notneeded)ATLDQITGK[0;0;0;0;0;6;2;0;0;5;0]'
但我仍然被卡住了,并且要求自动列表不显示。
答案 0 :(得分:0)
$('#designation').change(function(){
var desg = $(this).val();
if(desg) {
$( "#assign_whom" ).autocomplete({
source: function (request, response) {
$.ajax({
type: "post",
url:"assign_whom.php", // from this page I get the data list in the form of json.
data: {term:request.term,desg:$('#designation').val()},
dataType: 'json',
success: function(fdata) {
response($.map(fdata, function (item) {
return { label: item.displayvalue, value: item.value};
}));
}
});
},
minLength: 1,
focus: function( event, ui ) {
return false;
},
select: function( event, ui ) {
document.getElementById('assign_to').value=ui.item.id;
return true;
}
});
}
});