1. 程式人生 > >html文件中引入html文件

html文件中引入html文件

load() blog 方式 height div query gpo 文件 ()

一般用於網站提取公共部分的導航欄等

第一種方式:<iframe>標簽

在body標簽第一行加<iframe>標簽

<body>
<iframe src="${ctx}/pub/top" frameborder="0" width="100%" height="38" marginheight="0" scrolling="no"></iframe>

</body>

第二種方式:jQuery的load()方法

在body標簽第一行進行操作

<div id="page1"></div>
<script>
$("#page1").load("${ctx}/pub/top");
</script>

html文件中引入html文件