我正在尝试实现 JQuery UI 提供的自动完成功能,我想知道如何通过放置提供的源代码来做到这一点:
<script>
$(function() {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL"
];
$( "#tags" ).autocomplete({
source: availableTags
});
});
</script>
进入我的 script.js 文件。在我的 .html 文件中,我有:
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript" src="script.js"></script>
其中 script.js 是我的 .js 文件。我试过把它放在我的 .js 文件中:
$(document).ready(function() {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL"
];
$( "#tags" ).autocomplete({
source: availableTags
});
});
这在我的 .html 文件中:
<form class="ui-widget" name="phoneForm">
<label for="tags">Tags: </label>
<input id="tags" name="phoneItem" placeholder="Add a Phone"/>
</form>
但这不起作用。任何人都可以帮助我了解我做错了什么并指出我的写作方向吗?谢谢!