我已经使用 html 和 jquery 开发了 android phonegap 应用程序。我需要显示文本框的工具提示。所以我尝试在 jquery 中使用鼠标悬停,但它像正常的单击事件一样工作。单击文本框后,我收到警报。我试过了javascript也。
这是我的代码:
$('#text').qtip({
content: "element",
show: 'mouseover',
hide: 'mouseout'
});
<input type="text" id="text" placeholder="first"/>
<script src="jquery.qtip-1.0.0-rc3.min.js" type="text/javascript"></script>
请帮助我。在此先感谢。