我已尝试过stackoverflow上涵盖的一些方法,但由于某些原因这不起作用(上下文:Chrome扩展,如果有帮助的话):
$(function(){
$('#num').autocomplete({
lookup: Object.keys(localStorage),
select: function(event, ui) {
//Tried a number of things here, it just doesn't trigger...
event.preventDefault();
$(this).val("hello");
}
});
});
自动完成工作完全正常,但选择不会触发任何内容。我试过焦点,同样的问题。有关如何调试的任何想法?感谢。