完整清单如下 -
<div class="autocomplete-list1">
<input type="text" class="addpropertyinput areaname-list-completed" name="property_areaname" id="property_areaname" placeholder="Area Name" onkeyup="autofillareaname()" maxlength="40" required />
<ul class="areaname-list" id="property_areaname_list"></ul>
</div>
<div class="errormsg" id="errormsg9"></div>
我可以点击页面外的任何地方关闭列表
$(window).click(function() {
$('#property_areaname_list').hide();
});
$('#property_areaname_list').click(function(event){
event.stopPropagation();
});
但如果在键盘上按下选项卡,如何关闭列表,如果我使用模糊事件然后它关闭但点击列表上的任何选择都不会被选中...
答案 0 :(得分:2)
隐藏选项卡上的列表点击: -
$(document).on('keydown', function(e) {
var keyCode = e.keyCode || e.which;
if (keyCode == 9) {
$('#property_areaname_list').hide();
}
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="autocomplete-list1">
<input type="text" class="addpropertyinput areaname-list-completed" name="property_areaname" id="property_areaname" placeholder="Area Name" onkeyup="autofillareaname()" maxlength="40" required />
<ul class="areaname-list" id="property_areaname_list"><li>1</li></ul>
</div>
<div class="errormsg" id="errormsg9"></div>
&#13;
注意: -
当按下任意键时,上面的代码将检查该密钥的密钥代码,如果密钥代码为9则表示按下了 tab key
。然后它会隐藏自动完成列表
答案 1 :(得分:1)
使用按键,如..可能正常工作
None
答案 2 :(得分:1)
隐藏焦点丢失或模糊的div
$("#property_areaname").focusout(function() {
$('#property_areaname_list').hide();
});
带动画
$("#property_areaname").focusout(function() {
$('#property_areaname_list').animate({
display:"none"
});
});