我有一个id为“helpTopicAnchorId”的链接。
我想在jQuery中更改其文本。
我该怎么做?
答案 0 :(得分:13)
$('#helpTopicAnchorId').text('newText');
P jQuery Docs读得很好
答案 1 :(得分:7)
如果您指的是可用于工具提示的title属性,则可以使用:
$('#helpTopicAnchorId').attr('title','new title');
答案 2 :(得分:-1)
this.title = "your title here"
应该这样做