我对 javaScript 和所有这些东西完全陌生。我需要实现自动完成,所以我从简单的例子开始。这里的代码:
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Autocomplete</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script type="text/javascript">
$(function() {
$( "#tags" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "http://myUrl.com/suggest.json?term=harry",
success: function( data ) {
response( data.suggestions );
}
});
},
});
});
</script>
</head>
<body>
<div class="ui-widget">
<label for="tags">Tags: </label>
<input id="tags" />
</div>
</body>
</html>
这是我从脚本中提到的 url 得到的 json:
{
"term" : "harry",
"count" : 4,
"suggestions" :
[
"harry potter",
"harry l.",
"harry a.",
"harry leon"
]
}
似乎没问题,但我没有自动完成选项。可能是什么问题?