Javascript import html is it possible?

前端 未结 6 748
栀梦
栀梦 2020-12-01 13:30

I have some html pages with the same footer. With javascript and only javascript could i import another html page inside it?

6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-01 14:06

    Here's how you could use just javascript to add a footer to your page.

    var ajax = new XMLHttpRequest();
    ajax.open("GET", "footer.htm", false);
    ajax.send();
    document.body.innerHTML += ajax.responseText;
    

提交回复
热议问题