我正在玩这个plunkr
“特殊东西”按钮添加了一个类,所以我想“不要点击”按钮删除该类。有人可以帮帮我吗? THX
答案 0 :(得分:0)
从你的代码:
scope.itemUnclicked = function ($index) {
console.log($index);
$scope.selectedIndex != $index;
}
嗯,你的意思是:
scope.itemUnclicked = function ($index) {
console.log($index);
$scope.selectedIndex = -1;
}
$scope.selectedIndex != $index
只会进行比较,然后在不改变任何内容的情况下抛弃结果。