用TM字符实体替换jquery文本,用jquery

Replace jquery text with TM character entity, with jquery

如何更改文本中带有TM字符实体的文本,用jquery?

例如:

TM = ™ ; ™

<h1>Some text™</h1>

现在我想将单击按钮时的文本更改为 'This is some other text™'

$('#click1').on('touchend', function () {
    $('h1').text("This is some other text");
});

如何将 ™ 与 jquery 放在一起以及如何将它放在 <sup></sup> 中?

试试这个

$('h1').html("This is some other text <sup>&#8482;</sup>");

Example

使用.html代替.text:

$('h1').html('This is some other text &#8482;');