当按下'enter'时,semantic-ui搜索以下链接

时间:2016-03-31 20:37:21

标签: javascript jquery semantic-ui

我想允许用户仅使用键盘导航搜索工具,这意味着他们使用箭头导航搜索结果,当他们按“输入”时,它会跟随项目的链接。

怎么可以这样做?

Here is an example from the docs, with a GitHub search box

1 个答案:

答案 0 :(得分:0)

$('.ui.search')
      .search({
        apiSettings: {
          url: /?q={query}'
        },
        fields: {
            results : 'items',
            title   : 'name',
            actionUrl: 'url'
        },
        minCharacters : 3,
        onSelect(result, response){ <-- here
            window.location.href = result.url;  
        }
      })
    ;