最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jquery $('id').text with Bold - Stack Overflow

programmeradmin2浏览0评论

I have a jquery that changes the text of a link like so:

if (urlfind > 0) {
    $('#linkurl').text('More info');
}

And html:

<a href = "" id = "linkurl"></a>

I am trying to add bold to this link, but adding <b>More Info</b> leaves them escaped in the text itself, rather than making the text bold

I have a jquery that changes the text of a link like so:

if (urlfind > 0) {
    $('#linkurl').text('More info');
}

And html:

<a href = "" id = "linkurl"></a>

I am trying to add bold to this link, but adding <b>More Info</b> leaves them escaped in the text itself, rather than making the text bold

Share Improve this question asked Dec 19, 2013 at 18:34 user3057706user3057706 731 silver badge6 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 5

.html() sets string as HTML content, whereas .text() sets the string as text.

Write:

if (urlfind > 0) {
    $('#linkurl').html('<b>More info</b>');
}

OR

if (urlfind > 0) {
    $('#linkurl').html('<strong>More info</strong>');
}

.html() .text()

Or if you wanted to get extravagant (and somewhat unnecessary):

if (urlfind > 0) {
  $('#linkurl').css('font-weight', 'bold');
}

The text() method inserts text, while the html() method inserts HTML, and <b> tags are HTML

if (urlfind > 0) {
    $('#linkurl').html('<b>More info</b>');
}

You can keep your .text() method by simply adding the style via the .css() method:

if (urlfind > 0) 
{
    $('#linkurl')
        .text('More info')
        .css('font-weight', 'bold');
}

See working jsFiddle demo

发布评论

评论列表(0)

  1. 暂无评论