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>
Leave A Comment?