2013-08-20 180 views
-5

傢伙請檢查我下面的代碼,爲什麼它不工作..AngularJS NG-控制器

<!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> 

我創建HWCtrl功能的NG-控制器..提前

感謝
+3

什麼不工作請具體? –

+0

正確的angular.js文件的路徑。你的代碼在[jsbin](http://jsbin.com/ewaY/1/edit) –

+2

上看到的效果很好,這個問題似乎是無關緊要的,因爲它是關於錯字 – Stewie

回答

4

你拼寫錯誤script

<srcipt src="angular.js"></srcipt> 
    ^-- here     ^-- and here