在Bootstrap typeahead()中提交选择自动填充?
发布时间:2020-12-18 00:13:37 所属栏目:安全 来源:网络整理
导读:如何自动提交使用Twitter Bootstrap typeahead()? http://twitter.github.com/bootstrap/javascript.html#typeahead 解决方法 有一个干净的方式使用updater回调: input.typeahead({ 'source' : ['foo','bar'],'updater' : function(item) { this.$element[
如何自动提交使用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; } }); 当用户选择选项(通过鼠标点击或键盘)时,回调填充输入框并发送表单。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |