0

我正在为工具提示使用 JQuery Tools 插件,它工作正常,但我想从另一个 JS 文件加载我的文本字符串以获取工具提示,或者如何从另一个 JS 文件文本字符串填充标题标签。这是我的代码:

$(".show-tooltip-top[title]").tooltip({position: "top center"});

以前我只是用 JQuery 做这样的事情,而不是插件:

$(".tooltip-test",this).html("This is a tooltip test");
4

1 回答 1

0

不完全清楚你在问什么,但如果你只是想知道如何改变title元素的属性,你可以使用jQuery 的attr函数

$(".show-tooltip-top[title]").attr("title", "your title text goes here").tooltip({position: "top center"});
于 2012-10-24T22:08:52.907 回答