所以我需要像这样使用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'); 请在这些循环中?