1

所以我需要像这样使用tiptip(一个tip插件):

$('#my-element').tipTip('show');

在我的代码中,我有:

var cells = $('.' + all_cells);  //cells refers to all div's with class cells
cells.each(function() {
          $(this)
          .removeClass('my_links') //fine
          .append('<div class="temp"></div>')  //fine
          .tipTip({ edgeOffset: 10, delay: 0, fadeIn: 0 }); //fine
          .tipTip('show') //syntax error

我猜这是因为单元格不是元素而是对象。

相似地,

 $('.' + all_cells)
 .attr('title', 'something'))
 .tipTip({ edgeOffset: 10, delay: 0, fadeIn: 100, fadeOut: 100, maxWidth: "300px" });
 .tipTip('show') //syntax error

如何使用tipTip('show'); 请在这些循环中?

4

1 回答 1

2

你有一个语法错误:

... ;
.tiptip(...

删除;就在最后一行之前。

于 2012-12-08T16:30:52.153 回答