伙计们,请检查我的下面的代码,为什么它不起作用..
<!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函数..提前感谢
答案 0 :(得分:4)
你拼错了script
:
<srcipt src="angular.js"></srcipt>
^-- here ^-- and here