オートコンプリート コードを追加すると、このエラーが発生します。オンラインで検索した後、重複した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");
}
});
}
});