试图抓住悬停在 tt-suggestion 上
trying to catch hover on tt-suggestion
<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 的建议上。
typeahead:cursorchanged 仅适用于键盘选择
而 .on('hover') 只是忽略了移动。
有什么建议吗? (不是 tt 的 :D)
就这样吧 - manemoi
西奥多
只要我理解你的问题,你可以改用这个语法:
$(document).on('mouseover', '.tt-suggestion', function(){
console.log("got it");
});
<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 的建议上。
typeahead:cursorchanged 仅适用于键盘选择 而 .on('hover') 只是忽略了移动。
有什么建议吗? (不是 tt 的 :D)
就这样吧 - manemoi 西奥多
只要我理解你的问题,你可以改用这个语法:
$(document).on('mouseover', '.tt-suggestion', function(){
console.log("got it");
});