如何获取typeahead.js中的数据集名称和文本字段值

时间:2013-09-22 15:15:16

标签: javascript html twitter-bootstrap typeahead.js

我正在使用twitter typeahead.js以及bootstrap 3.0。我有一个input type="text"和一个搜索按钮。我也有两个数据集。

当我搜索并单击搜索按钮时,我想在文本字段中获取数据集名称和值。如何获取文本字段值&数据集名称? (例如,每个数据集中的值可以相同,如下所示,USA在两个数据集中都重复)。

{
  name: 'Regions',
  local: ["Americas","APAC","EMEA","USA","Mexico","India","China","Malaysia","Belgium"],
  header: '<h3 class="myclass">Regions</h3>'
},
 {
  name: 'Countries',
  local: ["India","USA","Brasil","China"],
  header: '<h3 class="myclass">Clusters</h3>'
}

1 个答案:

答案 0 :(得分:0)

添加

template: 'Region - {{value}}'

到第一个数据集,

template: 'Country - {{value}}'

到第二个数据集。