如何通过单击链接到结果另一页来执行Bootstrap Typeaheads

时间:2017-06-21 08:34:31

标签: php jquery twitter-bootstrap codeigniter

这是我的代码......并使用codeigniter框架。我试图将结果重定向到另一个页面,如果汽车是宝马,点击结果,它将重定向到欢迎/宝马。可行吗?请帮我处理代码......

$(document).ready(function(){   var cars = ['Audi', 'BMW', 'Bugatti', 'Ferrari', 'Ford', 'Lamborghini', 'Mercedes Benz', 'Porsche', 'Rolls-Royce', 'Volkswagen'];   var cars = new Bloodhound({
    datumTokenizer: Bloodhound.tokenizers.whitespace,
    queryTokenizer: Bloodhound.tokenizers.whitespace,
    local: cars });// Initializing the typeahead
$('.typeahead').typeahead({
    hint: true,
    highlight: true, /* Enable substring highlighting */
    minLength: 1 /* Specify minimum characters required for showing suggestions */
},
{
    name: 'cars',
    source: cars
}); }); 

0 个答案:

没有答案