Angular js不起作用

时间:2013-07-29 12:20:09

标签: javascript html angularjs

这是我的html文件。 angular.js文件位于java / main / webapp / js文件夹下,当我点击它时,Intellij可以看到它,但代码不起作用!我在屏幕{{helloMessage}}上打印,而不是“hello world”

我在这里缺少什么?

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Angular test </title>

</head>
 <body>

<h1 ng-controller="HelloWorldCtrl">{{helloMessage}}</h1>

Angular test 
<script src="js/angular.js"> </script>
<script type="text/javascript">

  function HelloWorldCtrl($scope){
       $scope.helloMessage="Hello World";
  }

</script >

</body>
</html>

1 个答案:

答案 0 :(得分:21)

您忘了ng-app,将其放在body标记中:

 <body ng-app>

查看working example