Angularjs 學習總結
1 angularjs 使用 ngRoute 路由外掛
<html>
<head>
<meta charset="utf-8">
<title>AngularJS 路由例項 - 菜鳥教程</title>
</head>
<body ng-app="testdemo">
<ul>
<li><a href="#/">aaa</a></li>
<li><a href="#/bbb">bbb</a></li>
<li><a href="#/ccc">ccc</a></li>
</ul>
<div ng-view></div>
<script src="https://cdn.bootcss.com/angular.js/1.4.6/angular.min.js"></script>
<script src="https://apps.bdimg.com/libs/angular-route/1.3.13/angular-route.js"></script>
<script>
angular.module("testdemo",['ngRoute'])
.config(['$routeProvider',function($routeProvider){
$routeProvider.when("/",{template:"abc"})
.when("/bbb",{template:"bbb"})
.otherwise({template:"ccc"});
}]);
</script>
</body>
</html>
相關文章
- Angularjs學習筆記指令AngularJS筆記
- 學習總結
- AngularJS學習日記(六)ChartsAngularJS
- AngularJS學習日記(一)MVCAngularJSMVC
- AngularJS學習日記(二)路由AngularJS路由
- ConstraintLayout 學習總結AI
- BOM學習總結
- tkinter學習總結
- vue學習總結Vue
- HSF學習總結
- ElasticSearch 學習總結Elasticsearch
- Storm學習總結ORM
- vue 學習總結Vue
- lua 學習總結
- WebRTC學習總結Web
- GCD 學習總結GC
- CompletableFuture學習總結
- awk 學習總結
- MyBatis 學習總結MyBatis
- Maven學習總結Maven
- Ajax學習總結
- JVM學習總結JVM
- mysqlimport學習總結MySqlImport
- WorkFlow學習總結
- JNI 學習總結
- SVG學習總結SVG
- HTML學習總結HTML
- Mybatis學習總結MyBatis
- JavaWeb學習總結JavaWeb
- KUDU學習總結
- pandas 學習總結
- fetch學習總結
- MYSQL學習總結MySql
- 近期學習總結
- 【TS】學習總結
- SpringCloud 學習總結SpringGCCloud
- Kafka 總結學習Kafka
- Typescript學習總結TypeScript