Cum afișăm un element HTML ascuns folosind JavaScript?

Configurare noua (How To)

Situatie

Afișarea elementelor HTML ascunse se poate face prin schimbarea stilului de afișare:

Solutie

Pasi de urmat

 

<!DOCTYPE html>
<html>
<body>

<h2>Ce poate face JavaScript?</h2>

<p>JavaScript poate afișa elemente HTML ascunse.</p>

<p id=”test” style=”display:none”>Salut JavaScript!</p>

<button type=”button” onclick=”document.getElementById(‘test’).style.display=’block'”>Apasă-mă!</button>

</body>
</html>

 

Tip solutie

Permanent

Voteaza

(8 din 21 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?