0
當我嘗試選擇自動完成列表中的一個元素時,整個列表消失!一旦我嘗試將鼠標移動到下拉列表中,就會發生這種情況。JQuery自動完成列表消失
我的自動完成:
的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:我在網站上的其他網頁相同的自動完成它的工作,但在着陸頁上它不是
請發佈你的HTML和JS代碼 –
沒有顯示你的代碼,它不可能有人會指出這個問題。它的工作原理你可以在這裏看到http://jsfiddle.net/DLLVw/ –
@AamirAfridi對不起,我只是發佈它 –