私はJquery AutoCompleteテキストボックスのコードの下にあります
$(".autosuggest").autocomplete({
source: function (request, response) {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "AutoCompleteFetchService.asmx/getUserNames",
data: "{'TextBoxVal':'" + document.getElementById('txtName1').value + "'}",
dataType: "json",
success: function (data1) {
response(data1.d);
},
提案を正しく取得しています。" No search found"
データが返されない場合に表示しようとしています。JSON が空の場合、以下のループが実行されます
if(typeof (data1.d) == 'undefined')
{
}
しかし、提案に「データが見つかりません」と表示するように戻すまたは変更するにはどうすればよいですか?
もっと簡単な方法はありますか?