1

我正在使用这段代码:

    $('.ajax-typeahead').typeahead({
    source: function(query, process) {
        return $.ajax({
            url: $(this)[0].$element.data('link'),
            type: 'get',
            data: {q: query},
            dataType: 'json',
            success: function(res) {
                return  process(res);
            }
        });
    }
});

当我在输入字段中输入内容时,我得到:

bootstrap.min.js(第 1 行)

类型错误:a 未定义

有谁知道什么时候出错?

编辑:我更新到最新版本 2.3,现在一切正常!

4

1 回答 1

0

我更新到最新版本 2.3,现在一切正常!

于 2013-02-21T07:36:11.850 回答