1创建js文件放入
/**
* Created by Administrator on 2017/11/8.
*/
var Global={};
Global.getPart = function(element,html){
$(element).load(html)
}
2>引入jquery
网上下载
3>调用需要用的
放入head里面
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/common.js"></script>
放入body里面
<script>
$(function(){
Global.getPart("#head","head.html");
Global.getPart("#footer","footer.html");
})
</script>
网友评论