Bootstrap Typeahead更新程序未运行

时间:2013-12-08 23:45:43

标签: jquery typeahead twitter-bootstrap-2

我正在尝试使用Bootstrap 2.3.2创建自定义更新程序功能。似乎由于某种原因没有调用updater函数。

HTML

<input id="options_select" type="text" class="options"/><br/>
<textarea id="options_all" rows="5"></textarea><br/>                    

SCRIPT

$(document).ready(function() {      

    var source = [
        { id: 1, name: 'Courses' },
        { id: 2, name: 'Finance' },
        { id: 3, name: 'Housing' },
        { id: 4, name: 'Jobs' },
        { id: 5, name: 'Lifestyle' },           
        { id: 6, name: 'Travel' },          
        { id: 7, name: 'Miscellaneous' },];

    $('#options_select').typeahead({

        source: source,
        updater: function(item) {
            alert('hi');
            return item;
        }                
    }); 
});

预先输入正常,但为什么警报不显示?

0 个答案:

没有答案