我的文本框很少,我只需要在自动完成功能中使用这些值。如果用户从自动完成功能中选择&输入文本,自动完成应该再次触发。有人可以帮我提供代码吗。
http://www.apsrtconline.in/oprs-web/
我需要像链接中那样的输出。
$(function () {
$('#<%= txtCompany.ClientID %>').autocomplete({
source: function (request, response) {
$.ajax({
url: "WebService.asmx/GetCompanyNames",
data: "{ 'companyName': '" + request.term + "' }",
type: "POST",
dataType: "json",
contentType: "application/json;charset=utf-8",
success: function (result) {
response(result.d);
},
error: function (result) {
alert('There is a problem processing your request');
}
});
},
minLength: 0
});