我很沮丧,因为这是莫名其妙的!此代码有效:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>autocomplete demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
</head>
<body>
<label for="autocomplete">Select a programming language: </label>
<input id="autocomplete">
<script>
$( "#autocomplete" ).autocomplete({
source: [ "c++", "java", "php", "coldfusion", "javascript", "asp", "ruby" ]
});
</script>
</body>
</html>
但是,当我将必要的代码放在另一页时,它不起作用!!我确保jquery只加载一次并将一些代码从上到下移动,没有任何作用!还有什么我可能错过的吗?这是我应该使用的代码行(也许这里有什么东西可以阻止它?)
<input id="dept" name="dept" type="text" class="rounded" placeholder="e.g. Production" autocomplete="off" required>
还有其他人遇到过这样的问题吗?