Make header and footer files to be included in multiple html pages

前端 未结 11 2015
無奈伤痛
無奈伤痛 2020-11-22 06:49

I want to create common header and footer pages that are included on several html pages.

I\'d like to use javascript. Is there a way to do this using only html and

11条回答
  •  自闭症患者
    2020-11-22 07:28

    You could also put: (load_essentials.js:)

    document.getElementById("myHead").innerHTML =
    	"Title"
    	+ "Subtitle";
    document.getElementById("myNav").innerHTML =
    	"";
    document.getElementById("myFooter").innerHTML =
    	""
    	+ "

    Layout by You

    " + "

    Contact Us / " + "Report a problem.

    ";
    
    
    Content

提交回复
热议问题