-6

伙计们请检查我下面的代码,为什么它不起作用..

<!doctype html>
<html>
<head>          
        <meta charset="utf-8">
        <title></title> 
</head> 
<body ng-app>
        <h1 ng-controller="HWCtrl">{{helloMessage}}</h1>

        <srcipt src="angular.js"></srcipt>
        <script type="text/javascript">                 
                function HWCtrl($scope) {
                    $scope.helloMessage = 'Hello World';
                }

        </script>
</body>

我为 ng-controller 创建了 HWCtrl 函数。在此先感谢

4

1 回答 1

4

你拼错了script

<srcipt src="angular.js"></srcipt>
  ^-- here                   ^-- and here
于 2013-08-20T20:35:18.677 回答