试图抓住tt-suggestion

时间:2015-08-15 12:34:31

标签: jquery css typeahead.js bloodhound

<div class="form-group">
    <label>Input</label>
    <input type="text" class="form-control typeahead" placeholder="Type few letters"  autocomplete="off" spellcheck="false">
</div>

和代码

$('.tt-suggestion').on('mouseover', function(){
    // verify input
    console.log('got it');
});

我无法抓住鼠标悬停在先行者的建议上。

typeahead:cursorchanged仅适用于键盘选择 而.on('hover')只是忽略了这一动作。

有什么建议吗? (不是:D)

所以吧 - manemoi 西奥多

1 个答案:

答案 0 :(得分:1)

只要我理解您的问题,您就可以使用此语法:

$(document).on('mouseover', '.tt-suggestion', function(){
        console.log("got it");
    });