如何当结果只有1条时,直接选中第一条。
修改了一下源码,可以在前台调用到结果的数量
                //this._trigger("open");
                this._trigger("open", event, { item: a });
调用的时候
open: function (event, ui) {
                    if (ui.item.length == 1) {
                         //this.select(1); 没用
                      }
}
autocomplete first 第一个