添加一些自动完成代码后,我收到此错误。我确信它与在线搜索后重复的 jQuery 引用有关,但我只引用了一次。
该应用程序使用母版页,但相关页面不使用它,因此我在两者中都引用了 jquery。
$(".autosuggest").autocomplete({
source: function(request, response) {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "CustomerTypes.aspx/GetAutoCompleteData",
data: "{'Customer':'" + document.getElementById('txtCustomerType').value + "'}",
dataType: "json",
success: function(data) {
response(data.d);
},
error: function(result) {
alert("Error");
}
});
}
});