xxxxxxxxxx
<html>
<head>
<title>Angular JS Views</title>
<script src = "https://cdn.staticfile.org/angular.js/1.3.14/angular.min.js"></script>
<script src = "https://cdn.staticfile.org/angular.js/1.3.14/angular-route.min.js">
</script>
</head>
<body>
<h2>AngularJS-视图应用示例</h2>
<div ng-app = "mainApp">
<p><a href = "https://www.div.cn/run/angularjs-views-1.html#addStudent" target="_self">新增学生</a></p>
<p><a href = "https://www.div.cn/run/angularjs-views-1.html#viewStudents" target="_self">查看学生</a></p>
<div ng-view></div>
<script type = "text/ng-template" id = "addStudent.htm">
<h2>新增学生</h2>
{{message}}
</script>