在Bootstrap typeahead()中提交选择自动填充?

前端之家收集整理的这篇文章主要介绍了在Bootstrap typeahead()中提交选择自动填充?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何自动提交使用Twitter Bootstrap typeahead()?

http://twitter.github.com/bootstrap/javascript.html#typeahead

解决方法

有一个干净的方式使用updater回调:
input.typeahead({
    'source' : ['foo','bar'],'updater' : function(item) {
        this.$element[0].value = item;
        this.$element[0].form.submit();
        return item;
    }
});

用户选择选项(通过鼠标点击或键盘)时,回调填充输入框并发送表单。

原文链接:https://www.f2er.com/bootstrap/234277.html

猜你在找的Bootstrap相关文章