当您将 SimpleTip 插件应用到一组元素时,如何让SimpleTip插件使用每个元素的属性作为工具提示文本?title
$('td[title]').simpletip({
content : << this element's title attribute >>
});
我认为这对你有用
$('td[title]').each(function() {
$(this).simpletip({
content : $(this).attr('title')
});
});
$('td[title]').each(function() {
$(this).simpletip({
content : $(this).attr('title')
});
});
我找到了一个技巧:
在 Simpletip 源代码中,大约第 25 行:
// change this line:
.html(conf.content)
// to this
.html(conf.content ? conf.content : elem.attr('title'))
然后当你调用 simpletip 函数时:
$('td[title]').simpletip({
content: false
});
是的,这有点hacky,但它有效。