前端文件包含插件,类似于使用JSP的“<jsp:include page='...' />”命令。
引入jquery和jquery.include.js
<script src="jquery.min.js"></script>
<script src="jquery.include.min.js"></script>
- 在当前文档位置引入"header.html"的内容
include('header.html');
- 在当前文档位置引入"header.html"中id为"header"的元素(空格+jQuery选择器)
include('index.html #header');
- 将"content.html"中的所有".list"元素加载到"#wrap"元素内
$('#wrap').include('content.html .list');
- 用"content.html"中的所有".list"元素替换"#wrap"元素
$('#wrap').include('content.html .list',1);