gpt4 book ai didi

css - Angular : Apply bold style to a character inside ng-repeat

转载 作者:行者123 更新时间:2023-12-01 22:24:06 25 4
gpt4 key购买 nike

我有一个列表:

$scope.list = ["test/test1/test2/test3","test3/test5/test6"];

我想在显示列表时将粗体样式应用于/字符:

<div ng-repeat="path in list">
<p style="font-weight:bold">{{path}}</p>
</div>

您有什么想法可以实现吗?

Fiddle

最佳答案

你可以简单地用 str.replace http://jsfiddle.net/k18vgtvw/ 来完成

 <p style="font-weight:bold" ng-bind-html-unsafe="csc(path)"></p>

Controller

  $scope.csc = function(path) {
return path.replace(/\//g, "<span style='color:red'>/</span>");
}

关于css - Angular : Apply bold style to a character inside ng-repeat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37570146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com