Skip to content

finemi/IncludeJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

IncludeJS

前端文件包含插件,类似于使用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);

About

JQUERY文件包含插件

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published