获取bootstrap typeahead参数

时间:2014-11-29 10:53:22

标签: javascript twitter-bootstrap typeahead.js

我只想在我的代码中的任何位置获取typeahead控件的“minLength”参数。

我该怎么做?

控制器的定义如下:

$('#typeahead').typeahead({
  hint: true,
  highlight: true,
  minLength: 3
},
....

1 个答案:

答案 0 :(得分:0)

你可以试试这个

var options = {
  hint: true,
  highlight: true,
  minLength: 3
}

$('#typeahead').typeahead(options)
// and to get the minLength just use options.minLength
console.log(options.minLength);