3

添加一些自动完成代码后,我收到此错误。我确信它与在线搜索后重复的 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");
      }
    });
  }
});
4

2 回答 2

7

autocomplete()jQueryUI 库中的一个方法。您需要添加对它的引用以及jQuery.js:

<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.0/themes/smoothness/jquery-ui.css" />
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script>
于 2013-11-12T12:12:59.320 回答
4

您必须在 jquery 之后添加此库:

<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
于 2013-11-12T12:15:05.613 回答