1
的jQuery:jQuery的工具提示問題 - jQuery的
$(function() {
$("img").tooltip();
$("a").tooltip();
})
HTML:
<div id="container">
<div id="main">
<a href="#">testing</a>
<img src="trollface.jpg" title="Hello, imma trollface!" />
</div>
</div>
在上述情況下,tooltip只<img>
標籤的作品。
我還沒有在<img>
或<a>
上添加任何CSS。
$("a").hover(
function() {
$(this).animate({color: "white"}, 400);
}, function() {
$(this).animate({color: "black"}, 400);
})
但是,上述現在不起作用。
仍然不起作用。我想在該工具提示中加載html內容。 –
如果你想使用HTML工具提示,你必須用一個「toolip」類來構建div,而這在你的示例代碼中似乎沒有。查看http://jsfiddle.net/s7Fte/上的示例。 –
我擁有它,我只是沒有指定它。順便說一下,我在谷歌瀏覽器中試過,它工作。我使用Firefox 5. –