gpt4 book ai didi

javascript - 在 ng-repeat 中突出显示单个元素

转载 作者:行者123 更新时间:2023-11-28 02:26:04 25 4
gpt4 key购买 nike

以下问题:

我正在使用 ng-repeat 生成元素列表。如果用户点击我上面网页上的一个特殊标记,下面的函数会收到一个事件并向下滚动到相应的元素。除了向下滚动之外,我还想突出显示该元素,直到用户再次移动鼠标。我的问题是为此我需要操作我的 ng-repeat 列表中一个元素的 css 类。我认为这可能是可能的,因为每个 ng-repeat 元素都有自己的局部作用域……但我没有找到解决方案。

我的指令的一部分:

    //if a marker is clicked, the following code should bring the user to the corresponding item
$rootScope.$on("Scroll_to_product", function (event, args) {
product.gotoElement(args);
});
/*function which takes the class id of an html element as argument and brings
the user to the corresponding product*/
product.gotoElement = function (args) {
var elementID = 'product-' + args;
$location.hash(elementID);
// call $anchorScroll()
$anchorScroll();
}

任何帮助都会很棒,

谢谢,哈乔

最佳答案

我认为这个 Plunker 示例可能对您有所帮助

Plunker link

 $scope.idSelectedVote = null;
$scope.setSelected = function(idSelectedVote) {
$scope.idSelectedVote = idSelectedVote;
console.log(idSelectedVote);
}
.selected {
background-color: red;
}
<ul ng-repeat="vote in votes" ng-click="setSelected(vote.id)" ng-class="{selected : vote.id === idSelectedVote}">
</ul>

关于javascript - 在 ng-repeat 中突出显示单个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47953404/

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