我使用下面的代码输入自动完成功能,因为我有多个值,所以我添加了label
来显示,但添加了label
之后,我的自动完成功能没有任何作用。
有人可以帮我解决这个问题。
function autocomplete(inp, arr) {
var currentFocus;
inp.addEventListener("input", function (e) {
var a, b, i, val = this.value;
closeAllLists();
if (!val) {
return false;
}
currentFocus = -1;
a = document.createElement("DIV");
a.setAttribute("id", this.id + "autocomplete-list");
a.setAttribute("class", "autocomplete-items");
this.parentNode.appendChild(a);
for (i = 0; i < arr.length; i++) {
if (arr[i].substr(0, val.length).toUpperCase() === val.toUpperCase()) {
b = document.createElement("DIV");
b.innerHTML = "<strong>" + arr[i].substr(0, val.length) + "</strong>";
b.innerHTML += arr[i].substr(val.length);
b.innerHTML += "<input type='hidden' value='" + arr[i] + "'>";
b.addEventListener("click", function (e) {
inp.value = this.getElementsByTagName("input")[0].value;
closeAllLists();
});
a.appendChild(b);
}
}
});
inp.addEventListener("keydown", function (e) {
var x = document.getElementById(this.id + "autocomplete-list");
if (x)
x = x.getElementsByTagName("div");
if (e.keyCode === 40) {
currentFocus++;
addActive(x);
} else if (e.keyCode === 38) {
currentFocus--;
addActive(x);
} else if (e.keyCode === 13) {
e.preventDefault();
if (currentFocus > -1) {
if (x)
x[currentFocus].click();
}
}
});
function addActive(x) {
if (!x)
return false;
removeActive(x);
if (currentFocus >= x.length)
currentFocus = 0;
if (currentFocus < 0)
currentFocus = (x.length - 1);
x[currentFocus].classList.add("autocomplete-active");
}
function removeActive(x) {
for (var i = 0; i < x.length; i++) {
x[i].classList.remove("autocomplete-active");
}
}
function closeAllLists(elmnt) {
var x = document.getElementsByClassName("autocomplete-items");
for (var i = 0; i < x.length; i++) {
if (elmnt !== x[i] && elmnt !== inp) {
x[i].parentNode.removeChild(x[i]);
}
}
}
document.addEventListener("click", function (e) {
closeAllLists(e.target);
});
}
var countries = ["Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Anguilla", "Antigua & Barbuda", "Argentina", "Armenia"];
autocomplete(document.getElementById("myInput"), countries);
<div class="autocomplete" style="width:300px;">
<input id="myInput" type="text" name="myCountry" placeholder="Country">
<input type="hidden" name="Country">
</div>
所以要让label
我做到了,这是行不通的
我更改了
var countries = [{
"value": "Afghanistan, Pakistan",
"label": "Afghanistan"
},
{
"value": "Albania, Balkans",
"label": "Albania"
}];
注意:我需要在输入时以及选择后显示标签,因为我需要存储多个输入值。
答案 0 :(得分:1)
这是我固定的方法:
var itemLabel = arr[i].label,
itemValue = arr[i].value;
在直接使用arr[i]
的任何地方都可以使用其中之一。我正在label
上搜索用户输入的输入,但是如果需要,您可以在value
上添加。
您可以检查此小提琴以获取更多详细信息:https://jsfiddle.net/yeshas93/pg2dsj3u/1/
希望这会有所帮助。如有任何疑问,请在评论中让我知道。
修改
仅供参考,您可以检查select2.js
。它提供自动完成功能以及选择框上的许多其他功能。 Here is the link。
答案 1 :(得分:-1)
您可以使用数据列表HTML来执行此标记。
<input id="myInput" list="" type="text" name="myCountry" placeholder="Country">
<datalist id="countries">
<option value="Afghanistan">
<option value="Albania">
<option value="Algeria">
</datalist>
在选项标签中,您可以添加所有国家/地区列表。