1
所以我需要使用tiptip(前端插件)是這樣的:jquery每個元素如何應用而不是對象?
在我的代碼有:
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( '秀');請在這些循環中?