Created
November 3, 2015 11:59
-
-
Save akkijp/08ea623403df7134e112 to your computer and use it in GitHub Desktop.
AngularJS の基本
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja" ng-app="myApp"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script> | |
<script> | |
angular.module("myApp", []) | |
.controller("MyController", function($scope){ | |
$scope.mes = "こんにちわ、AngularJS!" | |
}) | |
</script> | |
</head> | |
<body ng-controller="MyController"> | |
{{1+1}} | |
<div>{{mes}}</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment