29 lines
999 B
HTML
29 lines
999 B
HTML
<!DOCTYPE html>
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||
<title></title>
|
||
</head>
|
||
<body ng-controller="myController">
|
||
{{msg}}
|
||
<script src="../../../Scripts/jquery-1.10.2.min.js"></script>
|
||
<script src="../../../Scripts/angular.min.js"></script>
|
||
<script src="../../../Scripts/angular-animate.min.js"></script>
|
||
|
||
<script src="../../../Scripts/angular-ui-router.min.js"></script>
|
||
<script src="../../../Scripts/angular-touch.min.js"></script>
|
||
|
||
<script src="../../../Scripts/angular-ui/ui-bootstrap-tpls.min.js"></script>
|
||
<script>
|
||
var ngApp = angular.module('myApp', []);
|
||
ngApp.controller('myController', function ($scope, $http) {
|
||
$scope.msg = '你好,Angular!';
|
||
$scope.getData = function () {
|
||
return 'qubernet';
|
||
}
|
||
});
|
||
|
||
</script>
|
||
</body>
|
||
</html>
|