根据标签包含的文本将 id 添加到标签

发布于 2024-10-31 10:02:33 字数 327 浏览 0 评论 0原文

我需要根据 h2 包含的文本添加一个“id”。我所拥有的不起作用。

像这样开始

<h2>Revision 3</h2>

脚本

$('h2:contains(" Revision 3 ")').replaceWith( "<h2 id="rev3">Revision 3</h2>"); 

像这样运行 结束

<h2 id="rev3">Revision 3</h2>

I need to add an "id" to the h2 based on the text it contains. What I have is not working.

Starts like this

<h2>Revision 3</h2>

Scripts runs

$('h2:contains(" Revision 3 ")').replaceWith( "<h2 id="rev3">Revision 3</h2>"); 

Ends like this

<h2 id="rev3">Revision 3</h2>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

遗弃M 2024-11-07 10:02:33
$('h2').each(function ()
{
    if ($(this).text() == "Revision 3")
        $(this).attr('id','rev3');
}

循环遍历所有 h2 标签,如果标签文本为 Revision 3 ,则将 id 设置为 rev3

$('h2').each(function ()
{
    if ($(this).text() == "Revision 3")
        $(this).attr('id','rev3');
}

Loops through all h2 tags, if the tag text is Revision 3 it set the id to rev3

冧九 2024-11-07 10:02:33

或者,如果您只是想向其中添加 ID,您可以使用更快的方法,例如:

$('h2:contains("Revision 3")').attr('id','rev3');

Or if you just want to add ID to it you might use something faster like:

$('h2:contains("Revision 3")').attr('id','rev3');
心清如水 2024-11-07 10:02:33

您不能使用字符串分隔符在字符串中引用字符串...因此您不能在用 " 分隔的字符串内使用 " >,但是您可以在用 " 分隔的字符串内使用 '。例如:

$('h2:contains(" Revision 3 ")').replaceWith( "<h2 id='rev3'>Revision 3</h2>");

应该可以。此外,开头的空格,字符串的 和 end 应该被删除,因为它们不在您要查找的字符串中:

$('h2:contains("Revision 3")').replaceWith( "<h2 id='rev3'>Revision 3</h2>");

最后,使用类似以下内容不是更容易:

$('h2:contains("Revision 3")').attr('id','rev3');

鉴于 id <必须在文档中是唯一的,也许也值得将选择器限制为仅一个元素:

$('h2:contains("Revision 3")').eq(0).attr('id','rev3');

You can't quote a string within a string using the string delimiters...so you can't use " inside a string delimited with ", but you could use ' inside a string delimited with "). For example:

$('h2:contains(" Revision 3 ")').replaceWith( "<h2 id='rev3'>Revision 3</h2>");

Should work. Also, the spaces at the beginning, and end, of the string should be removed, since they're not in the string you're looking for:

$('h2:contains("Revision 3")').replaceWith( "<h2 id='rev3'>Revision 3</h2>");

And, finally, would it not be easier to use something like:

$('h2:contains("Revision 3")').attr('id','rev3');

Given that an id must be unique within a document it's maybe also worth limiting the selector to only one element:

$('h2:contains("Revision 3")').eq(0).attr('id','rev3');
七婞 2024-11-07 10:02:33
$('h2:contains("Revision 3")').attr("id", "rev3");
$('h2:contains("Revision 3")').attr("id", "rev3");
心如荒岛 2024-11-07 10:02:33

我认为修订版 3 开头和结尾的提取空格造成了一个问题。

试试这个:

$('h2:contains("Revision 3")').replaceWith( "<h2 id="rev3">Revision 3</h2>");  

I think the extract spaces at the begin and end of Revision 3 are creating an issue.

Try this:

$('h2:contains("Revision 3")').replaceWith( "<h2 id="rev3">Revision 3</h2>");  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文