我有很多HTML代码,我希望将其包含在另一个HTML页面中。我可以通过创建自己的自定义标记并将其包含在目标HTML页面中来完成此操作吗?如果不是,那有什么可能的选择?
例如,
<sample-tag /> <!-- contains another set of HTML code -->
感谢。
答案 0 :(得分:1)
复制自:here
a.html
<html>
<head>
<script>
$(function(){
$("#includedContent").load("b.html");
});
</script>
</head>
<body>
<div id="includedContent"></div>
</body>
</html>
b.html
<p> This is my include file </p>