Cum ascundem un element HTML folosind JavaScript?

Configurare noua (How To)

Situatie

Ascunderea elementelor HTML se poate face modificând stilul afișajului:

Solutie

Pasi de urmat

 

<!DOCTYPE html>
<html>
<body>

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

<p id=”test”>JavaScript poate ascunde elementele HTML.</p>

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

</body>
</html>

 

Tip solutie

Permanent

Voteaza

(12 din 25 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?