Master page in HTML

后端 未结 5 1663
太阳男子
太阳男子 2021-02-03 22:41

Is there any way to create a similar idea as master/content page in ASP.NET in pure HTML?

I want to create several pages in HTML, but I want that all of them look the sa

5条回答
  •  眼角桃花
    2021-02-03 23:41

    //wait until the dom is loaded
    $(document).ready(function () {
        //adds menu.html content into any "#menu" element
        $('#menu').load('menu.html');
    });
    

    In reference to some of the other answers, iframes should be used carefully and sparingly. http://rev.iew.me/help-moving-from-iframes

    http://fsvieira.com/2013/06/11/iframes-bad-for-a-website/

    Duplicate question here with answer: How to create a master page using HTML?

提交回复
热议问题