1

当您将 SimpleTip 插件应用到一组元素时,如何让SimpleTip插件使用每个元素的属性作为工具提示文本?title

$('td[title]').simpletip({
    content : << this element's title attribute >>
});
4

3 回答 3

5

我认为这对你有用

$('td[title]').each(function() {
    $(this).simpletip({
        content : $(this).attr('title')
    });
});
于 2009-03-19T05:40:34.123 回答
4
$('td[title]').each(function() {
    $(this).simpletip({
        content : $(this).attr('title')
    });
});
于 2009-03-19T05:41:12.670 回答
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,但它有效。

于 2009-03-19T05:36:23.867 回答