LoginSignup
1
1

More than 5 years have passed since last update.

AngularJS入門 あなたの名前は?

Last updated at Posted at 2015-03-04
<!DOCTYPE html>
<html lang="ja" ng-app>
<head>
  <meta charset="utf-8">
  <title>AngularJS</title>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.3/angular.min.js"></script>
</head>
<body>
  <h1>AngularJS入門</h1>
  名前:<input type="text" ng-model="oyatsu">
  <br>
  好きなおやつは「{{oyatsu}}」ですね。
</body>
</html>
code







AngularJS入門


名前:


あなたの名前は「{{yourname}}」ですね。

となります!

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1