5

我有以下 jQueryUI 自动完成

$('#clientSearch').autocomplete({
  source: function (request, response) {

    var url = window.apiUrl + '/clients?searchText=' + request.term;

    var request = $.ajax({
      url: url,
      type: 'GET',
      dataType: "json",
      cache: false,
      contentType: 'application/json; charset=utf-8'
    });

    request.done(function (clientList) {
      response($.map(clientList, function (client) {
        return {
          label: client.lastName + ', ' + client.firstInitial + '. ' + client.sex + '/' + client.age,
          value: client.id
        }
      }));
    });

    request.fail(function (jqXHR, textStatus, errorThrown) {
      response(
      {
        label: 'Error retrieving clients',
        value: null
      }
      );
    });

  },
  minLength: 2,
  select: function (event, ui) {
    event.preventDefault();
    getClient(ui.item.value);
  }
});

在按下向下箭头以将焦点/突出显示移动到项目#1 时显示自动完成列表后,item.value 将显示在用户键入搜索条件的输入元素中。

从我读到的在 select 事件中添加 event.preventDefault() ,如上面的代码中所做的那样,应该可以防止 item.value 被插入到输入元素中。

但是,item.value 仍在插入,并且直到突出显示的项目被“选择”w/ENTER 时才会命中选择事件中的断点。

我希望原始搜索文本保留在输入元素中,因为突出显示在自动完成列表中的项目之间移动。

4

1 回答 1

5

改用focus事件:

focus: function (event, ui) {
    event.preventDefault();
}
于 2013-05-22T21:15:31.583 回答