“Sertakan file html dalam file html” Kode Jawaban

Sertakan file html dalam file 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 termasuk halaman 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

Jawaban yang mirip dengan “Sertakan file html dalam file html”

Pertanyaan yang mirip dengan “Sertakan file html dalam file html”

Lebih banyak jawaban terkait untuk “Sertakan file html dalam file html” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya