Come includere HTML
- Pagina precedente Calendario
- Pagina successiva Elenco delle cose da fare
Impara come includere segmenti HTML nell'HTML.
HTML
Salva il HTML che verrà incluso nel file .html:
content.html
<a href="howto_google_maps.asp">Google Maps</a><br> <a href="howto_css_animate_buttons.asp">Animated Buttons</a><br> <a href="howto_css_modals.asp">Modal Boxes</a><br> <a href="howto_js_animate.asp">Animations</a><br> <a href="howto_js_progressbar.asp">Progress Bars</a><br> <a href="howto_css_dropdown.asp">Hover Dropdowns</a><br> <a href="howto_js_dropdown.asp">Fare clic sui menù a discesa</a><br> <a href="howto_css_table_responsive.asp">Tabelle Rispondenti</a><br>
per includere HTML
Utilizzare w3-include-html
proprietà per includere HTML:
Esempio
<div w3-include-html="content.html"></div>
Aggiungere JavaScript
L'inclusione HTML è effettuata con JavaScript.
Esempio
<script> function includeHTML() { var z, i, elmnt, file, xhttp; /* Eseguire una scansione di tutti gli elementi HTML: */ z = document.getElementsByTagName("*"); for (i = 0; i < z.length; i++) { elmnt = z[i]; /* Ricerca degli elementi con un attributo specifico: */ file = elmnt.getAttribute("w3-include-html"); if (file) { /* Utilizzare il valore dell'attributo come nome del file per inviare una richiesta HTTP: */ xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4) { if (this.status == 200) {elmnt.innerHTML = this.responseText;} if (this.status == 404) {elmnt.innerHTML = "Pagina non trovata.";} /* Rimuovere l'attributo e chiamare di nuovo questa funzione: */ elmnt.removeAttribute("w3-include-html"); includeHTML(); } } xhttp.open("GET", file, true); xhttp.send(); /* Uscire dalla funzione: */ return; } } } </script>
Chiamare alla fine della pagina includeHTML()
:
Esempio
<script> includeHTML(); </script>
Includere più segmenti HTML
Puoi includere un numero illimitato di segmenti HTML:
Esempio
<div w3-include-html="h1.html"></div> <div w3-include-html="content.html"></div>
- Pagina precedente Calendario
- Pagina successiva Elenco delle cose da fare