我正在“城市”输入字段上调试 jQuery 自动完成实例(v1.1)。
keyup
仅当字段值长度至少为 2 且值已更改时,才会在字段事件上设置自动完成数据绑定。
数据绑定、提示列表和自动完成工作正常。但有些不对劲。在日志中,我看到发布到服务器的城市输入值中多次缺少第三个字符,有时甚至是第四个字符。一些例子:
"trpani" instead of "trapani"
"fienze" instead of "firenze"
"scndicci" instead of "scandicci"
"brdisi" instead of "brindisi"
"paermo" instead of "palermo"
"caliari" instead of "cagliari"
我没有成功复制这个错误,但我相信这不是偶然的!错误发生在第三个字符。似乎在插入期间,Javascript 处理与键盘缓冲区发生冲突。
所以,我猜但我不确定,人们输入f i r e n z e
,但最终r
字符被遗漏,输入的最终值fienze
是最终发布到服务器。
问题
怎么了?为什么我没有成功复制错误?怎么了?
这是用于设置自动完成的代码:
/*
* here I store the previous value
*/
var storeCity;
$('#City').keydown(function(){
var val = $(this).val();
storeCity = (val.length >=2 ? val.substring(0,2):"");
});
/*
* the autocomplete is set only if
* - the City value has changed compared to the storeCity value
* - the City value has lenght at least 2
* - remark: using the keypress does not solve the issue
*/
$('#City').keyup(function(){
var val = $(this).val();
if(val.length>=2 && val.substring(0,2)!=storeCity){
getLocations('#City');
}
});
function getLocations(cityId){
var hint = $(cityId).val().substring(0,2);
$.ajax({
type: "GET",
url: "/include/getLocations.asp",
data: ({location : hint}),
async: false,
error: function() {},
success: function(dataget) {
var result = dataget.split("\n");
$(cityId).flushCache();
$(cityId).autocomplete(result, {
pleft: 100px,
minChars: 2,
matchContains: true,
max: 3000,
delay: 100,
formatItem: function(row){...},
formatMatch: function(row){ return row[0]; },
formatResult: function(row){ return row[0]; }
});
$(cityId).result(function(event,data){...});
}
});
}