+ 1
Changing font color inside template literal JavaScript
Hello guys! me again. just trying to change the font color for a single update of string inside a template literal. ex: function damageTaken(){ let gdPoint = Math.floor((Math.random()*8) + 1); adventurerHP -= gdPoint; update(`You have received ${gdPoint} points of damage! \n`); document.getElementById("advHealth").innerText = `${adventurerHP} HP`; } So basically what i want to do is to add the "you have received ... points of damage" in red. But whenever i try to change it by adding a span to it, it changes all the other messages in the textbox. Thanks Schindlabua for your response, but i get a weird error on which the message loses its span property as soon as a different message appears in the textbox x.x
3 odpowiedzi
+ 3
Side note! Using the style attribute is considered bad practice. I would add the following in your CSS:
.red {
color: red;
}
And then, in your javascript, you can do the following:
let span = document.createElement('span');
span.setAttribute('class', 'red');
span.textContent = str;
document.getElementById('health').appendChild(span);
+ 2
Hard to say without seeing the code. I would guess that somewhere else in your code you are also doing `.innerHTML` or `.innerSomething` and that interferes with what we wrote above?
+ 1
Thank you for your reply! I have edited the main question since i quoted the wrong code before x.x But i tried adapting it to your idea and it still doesnt work properly >.<