Sana şu şekilde söyleyeyim. Hiçbir framework e geçmene gerek yok. Aşağıdaki kodu sayfana ekle. Ekleyeceğil elementi örn: navbar <div mtnsmsk-ekle="navbar.html"></div> Olarak Ekleyebilirsin.
Sayfanın Sonuna Bu Kodu Ekle!
<script>
function includeHTML() {
var z, i, elmnt, file, xhttp;
z = document.getElementsByTagName("*");
for (i = 0; i < z.length; i++) {
elmnt = z[i];
file = elmnt.getAttribute("mtnsmsk-ekle");
if (file) {
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {elmnt.innerHTML = this.responseText;}
if (this.status == 404) {elmnt.innerHTML = "Dosya Bulunamadı!.";}
elmnt.removeAttribute("mtnsmsk-ekle");
includeHTML();
}
}
xhttp.open("GET", file, true);
xhttp.send();
return;
}
}
}
</script>