gpt4 book ai didi

jquery - 试图捕获悬停在 tt-suggestion 上

转载 作者:太空宇宙 更新时间:2023-11-04 11:30:51 25 4
gpt4 key购买 nike

<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");
});

关于jquery - 试图捕获悬停在 tt-suggestion 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32024764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com