标签:out route rip src javascrip 一个 foo 共享 --
$(function () { $.get("header.html",function (data) { $("#header").html(data); }); $.get("footer.html",function (data) { $("#footer").html(data); }); });
header.html footer.html
<!--引入头部--> <div id="header"></div> <!--body其他内容--> <!--引入footer部--> <div id="footer"></div> <!--导入布局js,共享header和footer--> <script type="text/javascript" src="js/include.js"></script>
互相调用vue元素
例如:在content页面 vue 逻辑代码部分 使用 "非匿名"
var routeVue = new Vue({
内容体
})
从header.html 中调用
routeVue._data.pageBean.minPrice=0;
routeVue._data.pageBean.maxPrice=0;
routeVue.findRouteByCat()
标签:out route rip src javascrip 一个 foo 共享 --
原文地址:https://www.cnblogs.com/buglife/p/14456909.html