如何选择包含特定文本值的跨度

时间:2019-07-15 10:04:06

标签: javascript angularjs sharepoint-2013

我想找到并替换span元素的样式。

我知道它在JQuery中是如何完成的

$("span:contains('OVERVIEW')").text("OVERVIEW "+ localStorage.getItem("shape"));

上述角度等​​价物是什么?

1 个答案:

答案 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>