我需要幫助的一兩件事之一:jQuery的,選擇,包含文本
這是我的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>
謝謝!
文本的數量可以不同,串 – AlexC 2010-05-06 01:33:44