我正在使用由“jquerytools”(http://jquerytools.org/download/)开发的 jQuery 函数工具提示,我试图在表中第一列的每一行上调用多个回调。
这是javascript源代码:
$('#table1 tr td:nth-child(1)').each(function(){
$(this).tooltip({
bounce: "false",
tip: $(this).children('.tableTooltip'),
position: 'center right',
offset: [0, 0],
effect: "fade",
relative: true,
opacity: 1,
delay: 300
});
});
这张桌子:
<table id="table1">
<tr><td>
Some content
<div class="tooltip tableTooltip">
<table><tr><td>My tooltip table</td></tr></table>
</div>
</td></tr>
<tr><td>
Some other content
<div class="tooltip tableTooltip">
<table><tr><td>My other tooltip table</td></tr></table>
</div>
</td></tr>
</table>
该代码似乎有效,当我将光标移到主表的第一列上时,它会出现工具提示。但是当我将光标移到工具提示上时,我从 Firebug 收到此错误:
未捕获的异常:找不到 [object Object] 的工具提示
任何人都可以帮助我吗?任何提示都非常感谢!