“incluir archivo html en el archivo html” Código de respuesta

incluir archivo html en el archivo html

// js
<script>
$(function () {
  var includes = $('[data-include]')
  $.each(includes, function () {
    var file = $(this).data('include')
    $(this).load(file)
  })
})
</script>
// html
<div data-include="header.html"></div>
<div data-include="footer.html"></div>
Faith Dev

HTML incluye la página HTML

// js
<script>
$(function () {
  var includes = $('[data-include]')
  $.each(includes, function () {
    var file = $(this).data('include')
    $(this).load(file)
  })
})
</script>
// html
<div data-include="header.html"></div>
<div data-include="footer.html"></div>

https://www.w3schools.com/howto/howto_html_include.asp
ammer

Respuestas similares a “incluir archivo html en el archivo html”

Preguntas similares a “incluir archivo html en el archivo html”

Más respuestas relacionadas con “incluir archivo html en el archivo html” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código