0

我使用http://plugins.learningjquery.com/cluetip插件和 jtip 类

html代码:

<a class="jt" href="ajax6.html" rel="ajax6.html" title="jTip Style!">

and jquery :
$('a.jt:eq(0)').cluetip({
  cluetipClass: 'jtip',
  arrows: true,
  dropShadow: false,
  hoverIntent: false,
  sticky: true,
  mouseOutClose: true,
  closePosition: 'title',
  closeText: '<img src="cross.png" alt="close" />'
});

但是当我想在 jt 班上使用 2 次或更多时间时,只是头等舱工作,例如:

<a class="jt" href="ajax6.html" rel="ajax6.html" title="jTip Style!">
<a class="jt" href="ajax5.html" rel="ajax5.html" title="jTip Style!">

仅加载 ajax6 并显示工具提示,而 ajax5 未加载工具提示

4

2 回答 2

0

这是因为您的代码明确指示它仅适用于第一个<a>.

去掉选择器中的 ":eq(0)"。

$('a.jt').cluetip({ ...
于 2013-01-28T16:49:09.413 回答
0

Pointy 是正确的,代码中的 eq 将匹配元素集减少到指定索引处的元素集。这就是为什么你不能捕捉所有元素的原因。

于 2013-01-28T16:54:25.247 回答