jquery引入页面公共部分
index.html
<div id="meta"></div> <div id="header"></div> <div id="menu"></div> <div id="footer"></div>
<script src="currency.js"></script>
currency.js
function currency(){ $('#meta').load('_meta.html'); $('#header').load('_header.html'); $('#menu').load('_menu.html'); $('#footer').load('_footer.html'); } currency();