アットウィキロゴ

a1a1

<!doctype html>
<html>
<head>
 <script src="angular.js"></script>
 <script>
 angular.module("mp", [])
 .controller("Hell", function($scope) {
 $scope.helloTo = {};
 $scope.helloTo.title = "Angular";
 });
 </script>
 </head>
 <body ng-app="mp">
 <div ng-controller="Hell" >
 <h2>Welcome {{helloTo.title}} to the world of Tutorialspoint!</h2>
 </div>
 
 </body>
</html>
最終更新:2016年05月27日 00:01