抱歉,我的 javascript-fu 不够好,无法提出更好的问题。
我正在使用引导程序 (bootstrap-typeahead.js) 的预输入功能,但在此处添加了 Gudbergur Erlendsson 的修改。
我正在使用 onselect 功能,并希望像这样(使用coffeescript)操作在这里输入的输入(我知道这个措辞真的很糟糕);
$('form input').typeahead
source: list
onselect: (obj) ->
$(this).css('background-color','blue')
显然这不起作用,因为this
它不在 onselect 函数的范围内,但我怎样才能得到它呢?我希望这是有道理的。