当您将SimpleTip插件应用于一组元素时,如何使用工具提示文本的每个元素的title
属性?
$('td[title]').simpletip({
content : << this element's title attribute >>
});
答案 0 :(得分:5)
我认为这对你有用
$('td[title]').each(function() {
$(this).simpletip({
content : $(this).attr('title')
});
});
答案 1 :(得分:4)
$('td[title]').each(function() {
$(this).simpletip({
content : $(this).attr('title')
});
});
答案 2 :(得分:1)
我发现了一个黑客攻击:
在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,但它确实有效。