0
我有一個我從json獲取的文本,並且我想要更改文字上出現的某些單詞的顏色,例如recusada
。我創建了一個管道,試圖做到這一點:更改特定單詞的顏色
transform(valor:any):any{
console.log("texto", valor);
return valor.replace(/recusada/, '<span style="color: red">$&</span>');
}
這是HTML:
<p *ngFor="let historico of disputa.historico"> {{historico.texto | filtroHistorico: historico.texto}} </p>
唯一的問題是,而不是僅僅改變recusada
顏色爲紅色的文字是這樣的:
Proposta無勇氣去R $:5762
<span style="color: red">recusada</span>
哇,沒現在有像'innerHtml'這樣的屬性,非常感謝你的人:) –