gpt4 book ai didi

javascript - 使用 jquery 在 ® 中包装 HTML 文档中的所有 ® 字符

转载 作者:行者123 更新时间:2023-11-29 14:52:28 26 4
gpt4 key购买 nike

我有一份文档,其中包含许多 ® 字符。我需要让它们都以上标呈现。我正在尝试这个但没有运气:

$('body:contains("®")').contents().each(function () {
if (this.nodeType == 1) { //Look for only element Nodes
$(this).html(function (_, oldValue) {
return oldValue.replace(/®/g, "<sup>$&</sup>")
})
}
});

最佳答案

您可以只使用基本替换;

$("body").html($("body").html().replace(/\u00AE/g, "<sup>&reg;</sup>"))

Fiddle

关于javascript - 使用 jquery 在 <sup>®</sup> 中包装 HTML 文档中的所有 ® 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23366452/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com