在Jquery中没有调用Bootstrap工具提示

时间:2013-05-18 10:16:28

标签: jquery twitter-bootstrap tooltip

Bootstrap在网站上工作正常,但出于某种原因我无法弄清楚如何发生工具提示。也许我没有正确地说它?

<div class="span3 app9downloadIcon downloadSectionItem" title="Download for App 9" id="' + appID + '" format="app9" appname="'+item.title+'"></div>'

//calling tooltip here
    $(app9downloadIcon).tooltip();

所以基本上app9downloadIcon是一个带有css中指定的背景图像的div。我想将鼠标悬停在图像上,并显示工具提示“Download for App 9”。但它对悬停atm没有任何作用。但我将其更改为$(app9downloadIcon).tooltip('show');它确实显示了工具提示,但它始终是静态和可见的。

1 个答案:

答案 0 :(得分:1)

如果这是确切的代码,则jquery部分应为

$("div.app9downloadIcon").tooltip();

或简单地说,

$(".app9downloadIcon").tooltip();

如果没有其他元素具有类app9downloadIcon