gpt4 book ai didi

html - 我有这样的代码 :Dropdown button need to fetch the data which i have entered in input textfield

转载 作者:行者123 更新时间:2023-11-28 01:17:38 24 4
gpt4 key购买 nike

我已经为我的网站实现了自动完成搜索栏。在点击下拉按钮输入文本字段时会出现,在输入文本字段中我可以输入我的位置。输入我的位置后,我的下拉菜单应该反射(reflect)我输入的数据在输入文本字段中..但不是我的下拉按钮再次显示选择位置。 设置位置

            <input type="search" class="form-control" id='locName' placeholder="Search Location" style=margin-top:-60px>
</form>

</div>
</div>
<!--JavaScript Part-->
<!--AutoComplete Search bar-->
$(function() {
$("#locName").autocomplete({
source: [
"Adugodi",
"Arekere",
"Attiguppe",
"Yelahanka"

],
minLength: 1,
function(event) {
var value = event.getAttribute('value')
var locName = document.getElementById("locName").value;
if (value.includes('&')) {
value = value.replace("&", "%26");
}
if (locName == "") {
alert("Please Select your Location");
} else {
window.location = "http://www.example.com";
}
return false;
}

});
});

最佳答案

在这种情况下,一个可能的解决方案是从 div 的 :active 和 :focus 中删除轮廓和边框,如下所示:

.btn:focus, .btn:active {
border: 0;
transition: none;
border-style: none;
outline: none;
}

关于html - 我有这样的代码 :Dropdown button need to fetch the data which i have entered in input textfield,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51721173/

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