markdown 利用立即执行函数引入公共头部和尾部
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 利用立即执行函数引入公共头部和尾部相关的知识,希望对你有一定的参考价值。
```
//common.js
$(function(){
/* 添加头尾标签 */
$("<header></header>").insertBefore("body div:first");
$("<footer></footer>").appendTo("body");
/* 加载头尾内容 */
$("header").load("header.html");
$("footer").load("footer.html");
/* 添加样式表common.css */
$("head").append("<link>");
css = $("head").children(":last");
css.attr({
rel: "stylesheet",
type: "text/css",
href: "../assets/css/common.css"
});
})
```
```
<script src="../assets/js/common.js"></script>
```
以上是关于markdown 利用立即执行函数引入公共头部和尾部的主要内容,如果未能解决你的问题,请参考以下文章
引入公共头部 脚部
如何引入公共代码?
网站 页面公共部分的处理
head标签怎么给多个html引用
JS外链式在html头部引入无效的问题
利用gulp解决前后端分离的header/footer引入问题