我正在使用以下jquery ui自動完成功能。這是完美的與鼠標,但通過鍵盤,我無法選擇任何值。看看代碼。Autocomplete.js不能使用鍵盤上下箭頭鍵
$("#"+textBoxId).autocomplete("../common
/autoSuggestValues.php?index="+index+"&
randValue="+Math.random(), {
selectFirst: false,
width:textBoxWidth,
minChars: 2,
autoFill: false,
scroll: true,
scrollHeight: 120,
formatItem: function (rowdata) {
var details = rowdata[0].split('@#@');
return details[0];
}
});
$('#'+textBoxId).result(function (event, data, formatted) {
var det = data[0].split("@#@");
if(det[0] != 'No Match Found') {
$('#'+textBoxId).val($.trim(det[0])).css('border','');
$('#'+hiddenId).val(det[1]);
processAutoSuggOptFunc(optionalFunction); //process the optional
function using the another built function "processAutoSuggOptFunc"
} else {
$('#'+textBoxId).val('');
$('#'+hiddenId).val('');
}
});
確實json的返回結果?你可以檢查你的控制檯是否有錯誤嗎? – sbaaaang