我正在尝试使用 flowplayer 工具提示工具 (http://flowplayer.org/tools/demos/tooltip/table.html) 在特定元素上显示工具提示。
这是我的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 部分的样式为 display:none。
这是我正在尝试使用的选择器...
$("#menu-table td[menu-one]").tooltip();
tooltip() 应该显示隐藏的 div,但我确定我的选择器错误。
有什么建议么?