在jQuery中更改链接的标题

时间:2009-07-31 12:27:48

标签: javascript jquery

我有一个id为“helpTopicAnchorId”的链接。

我想在jQuery中更改其文本。

我该怎么做?

3 个答案:

答案 0 :(得分:13)

$('#helpTopicAnchorId').text('newText');

P jQuery Docs读得很好

答案 1 :(得分:7)

如果您指的是可用于工具提示的title属性,则可以使用:

$('#helpTopicAnchorId').attr('title','new title');

答案 2 :(得分:-1)

this.title = "your title here"

应该这样做