我是Angular.js的新手,所以我知道这是一个非常基本的问题,但这里看起来只是找到angular.js问题答案的地方。
<!doctype html>
<html ng-app="example">
<head>
<script src="angular.min.js"></script>
<script src="angular.sanitize.min.js"></script>
<script>
var example = angular.module("example", ['ngSanitize']);
example.controller("exampleCtrl", function($scope){
$scope.appTitle = "<b>Example Angular App</b>";
});
</script>
</head>
<body ng-controller="exampleCtrl">
<h1 ng-bind-html="appTitle"></h1>
</body>
</html>
我遵循Rodrigo Branas(Angular.js Essentials)的书。他只是使用“停车”字作为变量的名称,而不是“示例”。
我不知道是否有angular.js等更新?
答案 0 :(得分:0)