我只想在我的代码中的任何位置获取typeahead控件的“minLength”参数。
我该怎么做?
控制器的定义如下:
$('#typeahead').typeahead({
hint: true,
highlight: true,
minLength: 3
},
....
答案 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);