我有一个产品标题“Pillow BALANCE Purple”,我想在第二个单词之后换行。如下所示。
枕头平衡
紫色
这个标题有一个类让我们说“标题”。我使用以下代码更改第一个单词“Pillow”的颜色,但我也需要更改第二个单词的颜色,当然还要让第三个单词进入第二行。任何帮助将不胜感激。
//add span to first word of module title, page heading
window.addEvent ('domready', function () {
var els = $$('.art-postcontent h2 a, .art-postcontent h2 a:link, .art-postcontent h2 a:hover, .art-postcontent h2 a:visited, .art-blockcontent h2 a, .art-blockcontent h2 a:link, .art-blockcontent h2 a:hover, .art-blockcontent h2 a:visited');
if (!els.length) return;
els.each (function(el){
var html = el.innerHTML;
var text = el.get("text");
var pos = text.indexOf(' ');
if (pos!=-1) {
text = text.substr(0,pos);
}
el.set("html", el.get("text").replace(new RegExp (text), '<span class="first-word">'+text+'</span>'));
});
});