0

我在玩这个plunkr

“特殊的东西”按钮添加了一个类,所以我想“不要点击”按钮来删除那个类。有人可以帮我吗?谢谢

4

1 回答 1

0

从您的代码:

scope.itemUnclicked = function ($index) {
    console.log($index);
    $scope.selectedIndex != $index;
}

嗯,你的意思是:

scope.itemUnclicked = function ($index) {
    console.log($index);
    $scope.selectedIndex = -1;
}

$scope.selectedIndex != $index只会进行比较,然后将结果丢弃而不更改任何内容。

于 2013-10-03T22:46:11.373 回答