<!doctype html>
<html ng-app>
<head>
<title>Hello AngularJS</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.js"></script>
</head>
<body>
<input ng-model="yourname" type="text" placeholder="Your name">
<h1>Hello {{ yourname }}</h1>
</body>
</html>
Hello AngularJS
bigdataBI (2016-05-01 12:54:22) 评论 (0)<!doctype html>
<html ng-app>
<head>
<title>Hello AngularJS</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.js"></script>
</head>
<body>
<input ng-model="yourname" type="text" placeholder="Your name">
<h1>Hello {{ yourname }}</h1>
</body>
</html>