作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果范围内有下一个数组
$scope.colors = [
"red",
"blue",
"yellow",
"orange",
"black",
"purple"
];
我使用 ng-repeat
<div ng-repeat="car in cars">
我希望对于该 div 的每次迭代都将添加 $scope.colors 中的一种颜色。我想随机添加或按顺序添加。
我找到了链接 http://www.whatibroke.com/?p=938其中有一个从列表中添加随机类的指令,但我无法使其在 ng-repeat 中工作,我粘贴了该示例中的代码以防万一。
app.directive("ngRandomClass", function () {
return {
restrict: 'EA',
replace: false,
scope: {
ngClasses: "="
},
link: function (scope, elem, attr) {
//Add random background class to selected element
elem.addClass(scope.ngClasses[Math.floor(Math.random() * (scope.ngClasses.length))]);
}
}
});
<div class="test" ng-random-class ng-classes="classes"></div>
我知道我可以使用 $index 创建类似 myclass1、myclass2、myclass3 等的内容,但我更愿意使用更具描述性的类名称。
谢谢
最佳答案
只要正确绑定(bind) two-way
绑定(bind)属性,就可以让它工作。您也可以将指令属性名称本身重用于双向绑定(bind)属性,以避免再添加一个属性。
尝试:
.directive("ngRandomClass", function () {
return {
restrict: 'EA',
replace: false,
scope: {
ngClasses: "=ngRandomClass"
},
link: function (scope, elem, attr) {
//Add random background class to selected element
elem.addClass(scope.ngClasses[Math.floor(Math.random() * (scope.ngClasses.length))]);
}
}});
并将其用作:
<div ng-repeat="car in cars">
<div class="test" ng-random-class="colors">{{car}}</div>
</div>
关于javascript - AngularJs:我想为 ng-repeat 中的每次迭代从数组或列表中添加一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27974437/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!