gpt4 book ai didi

html - Angularjs:动态更改输入类型

转载 作者:太空狗 更新时间:2023-10-29 15:22:05 24 4
gpt4 key购买 nike

我有一个列表,有时有 truefalse值(value)。当我使用 ng-repeat 时显示列表中的值 <input type="text"> , 我想要 <input type="checkbox">如果该值与 bool 值匹配。

<table class="table table-hover table-striped table-bordered">
<tbody>
<tr ng-repeat="parameter in parameter_list">
<th class="text-left">
{{parameter.title | uppercase}}
</th>
<td class="text-left">
<div class="form-group">
<input type="text" ng-model="parameter_list[$index].value" class="form-control">
</div>
</td>
</tr>
</tbody>
</table>

任何想法,我该如何实现?

Fiddle

编辑:它不是重复的,因为我没有 input type$scope变量。

最佳答案

保持简单:

<input type="{{typeInput}}" />

在你的 Controller 中:

$scope.typeInput = 'number';

像魅力一样工作,没有所有额外的代码

关于html - Angularjs:动态更改输入类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35862140/

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