gpt4 book ai didi

javascript - 动态更改 ng-repeat 元素的宽度

转载 作者:行者123 更新时间:2023-11-28 00:29:20 25 4
gpt4 key购买 nike

我想通过调用函数来更改 ng-repeat 的所有元素的宽度。这是我的 HTML 代码:

<div ng-controller="fillTab">
<table>
<tr>
<td ng-repeat="z in downLine" class="row">
<table class="contUser" >
<tr>
<td>
<img src="{{z.picture}}" class='mask-pic'></img>
<p>Sometext</p>
</td>
<td>
<p>{{z.name}}</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>

“downline”是从工厂获取的数组。该数组的长度是可变的

ejec = {
"user0": {
"name": "ejec0"
},
"user1": {
"name": "ejec1"
},
"user2": {
"name": "ejec2"
}
}

所以我需要的是一个函数,可以在点击或计时器时,每次调用它时更改我的 ng-repeat 中所有 class="row"元素的“宽度”:

 $scope.changeWidth= function() {
$scope.x = variableNumber;
ng-repeatElements.width = x + "px"; ????
}

最佳答案

你想使用ng-style,文档发现here 。如果您在 Controller 中创建样式对象,您还可以有一个修改它的函数:

 $scope.rowWidth = {'width': '200px' };
function setRowWidth(newWidth){
$scope.rowWidth = {'width': newWidth + 'px' }
}

然后你可以将 ng-style 添加到你的 html

<td ng-repeat="z in downLine" ng-style="rowWidth">

只要范围变量 rowWidth 发生变化,您的 View 就会通过 Angular 渲染周期进行更新。

希望这有帮助!

关于javascript - 动态更改 ng-repeat 元素的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29157761/

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