man*_*ans 25 html master-pages
有没有办法在纯HTML中创建与ASP.NET中的主/内容页面类似的想法?
我想用HTML创建几个页面,但是我希望它们看起来都是一样的,有些内容不同.有没有办法做到这一点,而不创建几个彼此非常相似的页面?
//wait until the dom is loaded
$(document).ready(function () {
//adds menu.html content into any "#menu" element
$('#menu').load('menu.html');
});
Run Code Online (Sandbox Code Playgroud)
在参考其他一些答案时,应谨慎使用iframe. http://rev.iew.me/help-moving-from-iframes
http://fsvieira.com/2013/06/11/iframes-bad-for-a-website/
这里有一个重复的问题答案:如何使用HTML创建母版页?