我开始学习 AngularJs,我想知道为什么我的代码不起作用?我想知道为什么h1
标签没有变成橙色ng-class="'orange'"
。
我知道答案可能很简单,但我才刚刚开始。
这是我的 index.html:
<html ng-app="app">
<head>
<style type="text/css">
</style>
</head>
<body>
<div ng-controller="MainController">
<h1 ng-class="'orange'">Hello There</h1>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.16/angular.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>
这里是我的 app.js:
var app = angular.module('app', []);
app.controller('MainController', function($scope) {
})
ps控制台中没有错误。