zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

[AngularJS]1. Fisrt App, ng-app, Exprection{{}}

App angularjs NG
2023-09-14 09:00:56 时间

Create a Module named gemStore so we can get started on this marketing journey.

Attach the gemStore module to our HTML page with a Directive.

In index.html, create a simple Expression to display a friendly "Hello, Angular!" message.

<!DOCTYPE html>
<html ng-app = 'gemStore'>
  <head>
    <link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
    <script type="text/javascript" src="angular.min.js"></script>
    <script type="text/javascript" src="app.js"></script>
  </head>
  <body>
    <h1>{{"Hello, Angular!"}}</h1>
  </body>
</html>

 

var app = angular.module('gemStore',[]);