Single navigation bar across website?

后端 未结 3 1441
死守一世寂寞
死守一世寂寞 2020-12-08 18:09

I am currently building a web application for my employer, but I have some restrictions. It has to be in HTML, CSS, and Javascript for the front end, and I have to use a lot

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-08 18:41

    The easiest way would just be to write the code in a JS file, and include that code on your pages. You can hard code it or make it more intelligent, but here's a basic demo.

    var html = '';
    
    document.getElementById('nav').innerHTML = html;

提交回复
热议问题