我是AngularJS的新手。剛剛寫了一個簡單的Hello World與Angular玩。它似乎不起作用,我不明白爲什麼。簡單的AngularJS HelloWorld不起作用
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Hello Angular World</title>
</head>
<body>
<h1 ng-controller="HelloWorldCtrl">{{HelloAngularWorld}}</h1>
<script src="angular.js"/>
<script type="text/javascript">
function HelloWorldCtrl($scope) {
$scope.HelloAngularWorld = "Hi World of Angular!";
}
</script>
</body>
</html>
請您指出我的錯誤嗎?
看看:http://stackoverflow.com/questions/19398190/cant-get-hello-world-to-work-with-angular-js/ 19398229#19398229 – Cherniv
非常感謝!你救了我的一天! –
從他們的頭版看這個例子[http://stackoverflow.com/questions/33845076/data-binding-in-angular-js/39002950#39002950](http://stackoverflow.com/questions/33845076/data- binding-in-angular-js/39002950) –