2017.11.28 prepend 添加移动转移

prepend 添加移动转移
function pre() {
var html = $("header .tel-in").html();
var html2 = $("header .line").html();
$("body").append('<div class="ghost-footer">'+ html +'<div class="line">'+ html2 +'</div></div>');
}
$(document).ready(function () {
pre();
});
append 是在demo的后面加内容
prepend 是在demo的前面加内容
相关文章