我正在尝试修改此页面上的代码:jQuery:如何遍历 <p> 段落中的所有字符?
...但要在不同的 DIV 上使用:
var $p = $('.couleurs');
var array = $p.text().split('');
var colors = ['bleu','orange','vert','rose','rouge'];
$.each(array, function( i ) {
array[i] = '<span class="' + colors[ i % 5 ] + '">' + array[i] + '</span>';
});
$p.html(array.join(''));
我现在的问题是,如果我在不同的 DIV 上使用“.couleurs”类,则会添加以前具有此类的 div 中的文本。像这样:
<div class="couleurs">Some text</div>
<div class="couleurs">More text</div>
...将显示:
一些文字更多文字
任何人都可以帮忙吗?