0
asp.netのデータベースからドロップダウンリストのSelected Valueに対してjQueryオートコンプリートテキストボックスを設定するにはどうすればよいですか?ドロップダウンリストの選択ごとにオートコンプリートで値を表示します。ここに私のコードは、私がドロップダウンリストで値を選択するとき、それは私が間違って行われ、どのように私は私が私が合格し、私の問題を解決しjquery AutoCompleteテキストボックスの値をDropdownlistのSeleted値と比較して
var ddl = document.getElementById('<%=cmbSourceCode.ClientID %>');
$(function() {
$("[id$=txtCode]").autocomplete({
source: function (request, response) {
$.ajax({
url: '<%=ResolveUrl("xCreate_grn.aspx/GetSourceCode") %>',
data: "{ 'prefix': '" + request.term + "','code':'"+ddl.SelectedIndex+ "'}",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
success: function (data) {
response($.map(data.d, function (item) {
return {
label: item.split('-')[0],
val: item.split('-')[1]
}
}))
},
error: function (response) {
alert(response.responseText);
},
failure: function (response) {
alert(response.responseText);
}
});
},
minLength: 4,
focus:function(event,ui){
event.preventDefault();
this.value = ui.item.label;
}
});
});
'[id $ = txtCode]' =>これが正しいセレクタだと確信していますか?ターゲットURLでリクエストが解決されたことを確認するために、コンソールとチェックネットワークのタブにエラーが表示されましたか? –
コンソールでエラーが発生しない – Raheel