未捕获的类型错误 - 自动完成不是ASP.Net中的功能

时间:2017-01-05 22:55:52

标签: jquery asp.net

我已经看过其中一些问题被提出过,而且几乎总是涉及到一个额外的jQuery库或没有引用正确的。我无法看到这与我的相关之处。我得到的错误是:

enter image description here

enter image description here

我知道脚本正在运行,就好像我显示了alert("Hello World")一样。通用处理程序也在工作,因为它从数据库中收集所有部分。

enter image description here

当我打开hello world call时,虽然当我开始输入文本框时应用程序首次加载时出现?我确定这与它有关。也许它在加载之前调用函数但是我不确定为什么?

有人能够看到这里出了什么问题吗?

1 个答案:

答案 0 :(得分:1)

以下是它工作的功能示例(裸骨):



$(document).ready(function() {
  $( function() {
    $( "#tags" ).autocomplete({
      source: [ "ActionScript", "AppleScript", "Asp" ]
    });
  } );
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet"/>

<input id="tags">
&#13;
&#13;
&#13;

您可能还希望查看此解决方案:AutoComplete jQuery Using JSON data