0
我正在嘗試使用流動遊戲工具提示工具(http://flowplayer.org/tools/demos/tooltip/table.html)來顯示特定的工具提示元件。jQuery選擇器在td元素上顯示流水遊戲工具提示
這裏是我的html:
<table id="menu-table" cellspacing="0" cellpadding="0" width="714" border="0" style="padding-top: 4px;">
<tr>
<td title="menu-one" style="background: url('images/menu-button.gif') top left no-repeat; text-align: center; vertical-align: middle; height:35px; width:115px; padding-right: 6px;">
<a href="about.php">About</a>
<div id="tooltip" class="tooltip">Tooltip text.</div>
</td>
</tr>
</table>
注意,提示DIV以上部分的樣式爲顯示:無。
這裏是我想要使用選擇...
$("#menu-table td[menu-one]").tooltip();
工具提示()應顯示隱藏的div,但我敢肯定,我有選擇錯了。
有什麼建議嗎?
嗯,這似乎並沒有改變任何東西隨便一個參數標題來選擇TD。 - 但我也不是100%確定它不是tooltip()函數的問題。有沒有辦法做一個鼠標懸停提醒,看看你提供的選擇器是否工作? – some1 2010-11-04 21:53:23
當然,只要做$(... selector_above ...)。hover(function(){alert('hover');}); – Jaime 2010-11-04 22:05:38
我不知道tooltip插件,但你確定你不必選擇實際的DIV?與上面你選擇TD但不隱藏DIV – Jaime 2010-11-04 22:06:17