×

Save Your Code

If you click the save button, your code will be saved, and you get an URL you can share with others.

By clicking the "Save" button you agree to our terms and conditions.

Report Error

×

Save to Google Drive

If you have a Google account, you can save this code to your Google Drive.

Google will ask you to confirm Google Drive access.

Open from Google Drive

If you have saved a file to Google Drive, you can open it here:

x
 
<h2> Usando document.querySelectorAll()</h1>
<ul>
    <li class="demo">Termo 1</li>
    <li class="demo">Termo 2</li>
    <li class="demo">Termo 3</li>
    <li class="demo">Termo 3</li>
    <li class="demo">Termo 4</li>
</ul>
<script>
    // seleciona e retorna os elementos DOM selecionados (HTML Colection)
    const elements = document.querySelectorAll(".demo"); 
    
    // calcula o número de elemntos DOM selecionados
    const number = elements.length
    
    // retorna o conteúdo HTML do elemento selecionado (primeiro elemento)
    const content = elements[0].innerHTML
    
    // exibe resultados
    const results = `
    
    Nº de elementos DOM com a classe demo: ${number}
    
    Conteúdo HTML do elemento DOM selecionado: ${content}    
    `            
    alert(results)
</script>
×

Report a Problem: