http://twitter.github.com/bootstrap/javascript.html#typeahead
input.typeahead({ 'source' : ['foo','bar'],'updater' : function(item) { this.$element[0].value = item; this.$element[0].form.submit(); return item; } });
当用户选择选项(通过鼠标点击或键盘)时,回调填充输入框并发送表单。