onmouseover不在jquery中工作

时间:2012-09-01 11:25:25

标签: android jquery cordova

我用html和jquery开发了android phonegap应用程序。我需要显示textbox的工具提示。所以我尝试在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>

请帮助我。谢谢。

1 个答案:

答案 0 :(得分:0)

手机上没有任何鼠标,因此不能有任何“鼠标悬停”。我知道在iOS上有一个移动事件,也许在Android上类似的东西可能有用。