1 <!DOCTYPE html>
 2 <html ng-app>
 3 <head>
 4     <title>Simple app</title>
 5 </head>
 6 <body>
 7     <div ng-controller = "MyController">
 8         <input type="text" ng-model = "name" placeholder="Your name">
 9         <h1>Hello {{name}} </h1>333
10         <h5>{{clock.now}}</h5>
11     </div>
12 <script type="text/javascript" src = "js/angular.js"></script>
13 <script type="text/javascript" src = "js/app.js">
14 </script>
15 </body>
16 </html>
View Code

相关文章:

  • 2021-06-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-05-02
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2021-05-24
  • 2021-07-27
相关资源
相似解决方案