1
我執行預輸入自動完成選擇,點擊下拉選項的變化,從箱子從到要後,但是當我選擇使用輸入下拉選項鑰匙它不改變上面的框。預輸入從自動完成變更輸入框中選擇選項
請告訴我,我該怎麼辦?
From: <input type="text" name="from" autocomplete="off" class="form-control inputTxtLarge inputSrc typeahead tt-query" placeholder="From: City or Airport" id="from_city" value="Delhi (India) DEL" spellcheck="false" required>
To: <input type="text" name="to" autocomplete="off" id="go_dest" class="form-control inputTxtLarge inputDest typeahead tt-query" placeholder="To: City or Airport" spellcheck="false" required>
JavaScript函數的變化從到要
$(document).on('click', '.tt-selectable', function(){
$("#go_dest").focus();
});
你怎麼稱呼打字功能 - 顯示你的代碼,以及你使用哪個版本的打字頭? – sintakonte
代碼更長,所以不可能在評論框中顯示代碼,版本是0.11.1 – Shubham
我的意思是隻是調用 - $(「....」)。typeahead .... – sintakonte