Javascript -- includehtml

  • Gast
  • Onderwerp Auteur
  • Gebruiker
  • Gebruiker
Meer
31 okt 2021 14:53 #23345 door Gast
Javascript -- includehtml werd gestart door Gast
Hallo,

Ik gebruik volgende javascript include-html code ....
Code:
<script> function includeHTML() { var z, i, elmnt, file, xhttp; /*loop through a collection of all HTML elements:*/ z = document.getElementsByTagName("*"); for (i = 0; i < z.length; i++) { elmnt = z[i]; /*search for elements with a certain atrribute:*/ file = elmnt.getAttribute("w3-include-html"); if (file) { /*make an HTTP request using the attribute value as the file name:*/ xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4) { if (this.status == 200) {elmnt.innerHTML = this.responseText;} if (this.status == 404) {elmnt.innerHTML = "Page not found.";} /*remove the attribute, and call this function once more:*/ elmnt.removeAttribute("w3-include-html"); includeHTML(); } } xhttp.open("GET", file, true); xhttp.send(); /*exit the function:*/ return; } } }; </script>

Nu wat is mijn probleem .... Een bestand invoegen vanop de server werkt ok.
Maar ik wil nu ook bestanden invoegen die via de editor in de database zijn opgeslagen.
Dit laatste lukt me niet....

Heeft iemand daar een oplossing voor?

Elke tip welkom;

Erik

edit hvdmeer: codetags toegevoegd
Onderwerp is gesloten.
Gemaakt door Kunena