我正在使用AJAX在jQuery中自动完成帮助进行文本更改搜索按名称搜索受训者。一切都运行正常,但当我正在编辑(使搜索字段为空)时,我得到一个空列表而不是总列表。我怎么能解决这个问题?
<input class="form-control" id="SearchString" value="" name="SearchString" type="text" placeholder="Search Trainee.." />
$("#SearchString").autocomplete({
source: function (request, response) {
$.ajax({
url: "/Admin/Trainee/TraineeList",
data: {
currentFilter: document.getElementById("selectThis").value,
searchString: request.term
},
success: function (result) {
$('#maindiv').html(result);
$("#SearchString").val(request.term);
$("#SearchString").focus();
},
error: function () {
alert("Some thing went wrong");
}
});
}
});