如何在index.html处显示footer.html?
How to display footer.html at the index.html?
我是新手程序员,我关注别人创建的项目。
程序员在 index.html 处写了 < footer> 。
然后 footer.html 已经显示在 index.html。
我不知道他怎么做到的。
更多信息,项目包括html、css、javascript、php、angular。
请告诉我如何自定义新标签并使用该标签显示页面
谢谢。
enter image description here
enter image description here
谢谢大家
答案是angular。
myapp.js
var app = angular.module('myApp',[])
.directive('footer',function(){
return {
restrict: "E",
templateUrl:'include/footer.html'
}
})
index.html
<html ng-app="myApp">
<footer></footer>
我是新手程序员,我关注别人创建的项目。
程序员在 index.html 处写了 < footer> 。
然后 footer.html 已经显示在 index.html。
我不知道他怎么做到的。
更多信息,项目包括html、css、javascript、php、angular。
请告诉我如何自定义新标签并使用该标签显示页面
谢谢。
enter image description here
enter image description here
谢谢大家
答案是angular。
myapp.js
var app = angular.module('myApp',[])
.directive('footer',function(){
return {
restrict: "E",
templateUrl:'include/footer.html'
}
})
index.html
<html ng-app="myApp">
<footer></footer>