前端之家收集整理的这篇文章主要介绍了
angular tab切换,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
废话不多说,粗暴点,直接上代码。
<button ng-click="tab('tab.html')">1</button>
<button ng-click="tab('tab1.html')">2</button>
<div ng-include="tabs"></div>
<script type="text/ng-template" id="tab.html">
tab1
</script>
<script type="text/ng-template" id="tab1.html">
tab2
</script>
<script type="text/javascript">
var app = angular.module('myApp',[]);
app.controller('MyController',['$scope',function($scope){
$scope.tabs = "tab.html";
$scope.tab = function(param){
$scope.tabs = param;
}
}])
</script>
原文链接:https://www.f2er.com/angularjs/149419.html