gpt4 book ai didi

jquery ,选择器,包含文本之一

转载 作者:行者123 更新时间:2023-12-01 00:41:52 26 4
gpt4 key购买 nike

我需要帮助做一件事:

这是我的 jQuery 想法:

        var text = "Some Text1, Some Text2, Some Text3";


$("h3:contains('"+even one of this string+"')").each(function() {
$(this).append("<span>Some Text</span>");
});

这是我的 HTML

            <h3 class="test1">Some Text2</h3>

<h3 class="test1">Some Text1</h3>

<h3 class="test3">Another Text</h3>

我想要的输出:

             <h3 class="test1">
Some Text2
<span>Some Text</span>
</h3>

<h3 class="test1">
Some Text1
<span>Some Text</span>
</h3>

<h3 class="test3">Another Text</h3>

谢谢!

最佳答案

快速 jQuery

var text = "Some Text1, Some Text2, Some Text3";

$(document).ready(function(){
$(text.split(", ")).each(function(i,v){
$('h3:contains("'+ v +'")').append('<span>Some text</span>');
})
})

demo

关于jquery ,选择器,包含文本之一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2777841/

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