オートコンプリートドロップダウンで選択した項目の値を取得する方法を教えてください。私はデータを入力することができ、選択した項目の値だけを取得したい。以下は、私が使用しているスニペットです。ASP.Netで自動完成JQuery
$(document).ready(function() {
$("#txtTest").autocomplete({
source: function (request, response) {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "Webservice.asmx/GetNames",
data: "{'prefix':'" + request.term + "'}",
dataType: "json",
async: true,
success: function (data){
response($.map(data, function(item)
{ return item ; }));
},
error: function (result) {
alert("Due to unexpected errors we were unable to load data");
}
});
},
minLength:2
});
});
おかげ
選択値は.aspxを使用せずにクライアント側の一部として来る必要があります – pal