当我尝试在我的自动完成列表中选择一个元素时,整个列表就会消失!一旦我尝试在下拉列表中移动鼠标,就会发生这种情况。
我的自动完成:
包括js/jquery-ui-1.10.3.custom.min.js
在内,与 相同jquery-ui-1.10.3.custom.less
。
有任何想法吗?
HTML 代码:
<div id="region_box" name="region_box">
<input type="text" name="name" placeholder="<%$(language.placeholder.search_box.%b__lang)%>" id="yourCity" size="35" maxlength="50" style="width:340px;" tabindex="1">
<input id="chooseb_auto" class="choose" value="&translate("SEARCHBOX_CHOOSE_BUTTON")" type="submit">
<div class="error_label">
...
JS代码:
// Choose the city button
var both = 0;
$(".choose").live("click",function(){
for (var id in regionArray) {
if( trim(regionArray[id].name[lang]).toUpperCase() == trim($("#yourCity").val()).toUpperCase() ) {
otherRegionChoosen(id);
window.LightBox.close();
return;
}
}
..
PS:我在网站上的其他页面有相同的自动完成功能并且它正在工作,但在登录页面上它没有