gpt4 book ai didi

javascript - JQuery 中的自动完成功能不显示提示

转载 作者:行者123 更新时间:2023-12-03 09:41:50 26 4
gpt4 key购买 nike

我在 JQuery 中的自动完成方面遇到问题。这是我的 autoComplete.html 文件:文本字段出现在页面上,但在键入时不显示提示。我做错了什么?

编辑:我已经修改了 @Praveen Kumar 对我的代码的回答,但 TextBox 仍然不显示提示。

编辑2:问题出在脚本链接中。而不是

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"></link>

应该有:

<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"></link>

现在一切正常了。现在我的代码如下所示:

       <head> 
<meta charset="utf-8"></meta>
<meta http-equiv="X-UA-Compatible" content="IE=edge"></meta>
<meta name="viewport" content="width=device-width, initial-scale=1"></meta>
<meta name="description" content=""></meta>
<meta name="author" content=""></meta>

<title>Gigs Map Inserting</title>

<!-- Bootstrap Core CSS -->
<link href="http:/css/bootstrap.min.css" rel="stylesheet"></link>


<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"></link>
<!-- Linki do skryptow -->

<script>

$(document).ready(function() {
var availableTags = [
"FirstOption",
"SecondOption",
"ThirdOption"
];
$("#tags").autocomplete({
source: availableTags
});
});
</script>


<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js" ></script>



</head>
<body>
<div th:class="form-group">
<label class="col-md-3 control-label">Tags: </label>
<input class="form-control" id="tags" name="tags" />
</div>

最佳答案

更改包含顺序,更新对 jQuery 文件的引用:

<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js" ></script>

添加:

$("#tags").autocomplete({
source: availableTags
});

片段

$(document).ready(function() {
var availableTags = [
"FirstOption",
"SecondOption",
"ThirdOption"
];
$("#tags").autocomplete({
source: availableTags
});
});
@import url("//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css");
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js" ></script>

<div th:class="form-group">
<label class="col-md-3 control-label">Tags: </label>
<input class="form-control" id="tags" name="tags" />
</div>

关于javascript - JQuery 中的自动完成功能不显示提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31160979/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com