我想找到并替换span元素的样式。
我知道它在JQuery中是如何完成的
$("span:contains('OVERVIEW')").text("OVERVIEW "+ localStorage.getItem("shape"));
上述角度等价物是什么?
答案 0 :(得分:0)
我们可以使用ng-bind实现它。以下示例代码供您参考。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example</title>
<script src="//code.angularjs.org/snapshot/angular.min.js"></script>
<script>
angular.module('bindExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.name = 'OVERVIEW'+localStorage.getItem("shape");
}]);
</script>
</head>
<body ng-app="bindExample">
<div ng-controller="ExampleController">
<span ng-bind="name">OVERVIEW</span>
</div>
</body>
</html>