LoginSignup
0
0

More than 5 years have passed since last update.

Angular.jsの練習1

Last updated at Posted at 2015-12-31

テキストボックスに入れた値が表示されます。

practice.html
<!DOCTYPE html>
<html lang="ja" ng-app>
<head>
  <title>Angular1</title>
  <script src="https://code.angularjs.org/1.4.8/angular.min.js"></script>
</head>
<body>
  <h1>practice</h1>
  <input type="text" ng-model="name">
  <p>hello! {{ name }}</p>
  <p>calculate {{ 5 * 3 }}</p>
</body>
</html>
0
0
1

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
0
0