Warum wählt mein JavaScript querySelectorAll keine Elemente nach ID aus?HTML

HTML-Programmierer
Anonymous
 Warum wählt mein JavaScript querySelectorAll keine Elemente nach ID aus?

Post by Anonymous »

Ich versuche, mit querySelectorAll mehrere -Elemente in meinem HTML auszuwählen, aber es funktioniert nicht.

Hier ist mein Code:

Code: Select all

Paragraph 1
Paragraph 2
other person. Min15 characters.

Why is my JavaScript querySelectorAll not selecting elements by ID?
Body*
Paragraph 3

Change the color


function changeOne() {
let firstPara = document.querySelectorAll("ss");
firstPara.forEach(function(p) {
let randomColor = "#" + Math.floor(Math.random() * 16777215).toString(16);
p.style.color = randomColor;
});
}

Das Problem:

Code: Select all

querySelectorAll("ss")
gibt eine leere NodeList zurück.

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post