在我的页面上,我动态创建了单选按钮。我想在选择单选按钮时更改包装器背景颜色。
以下是我的代码
<section ng-repeat="list in myList">
<div class="radioWrapper">
<input type="radio" name="{{list.category}}" ng-model="list.name">
<label>{{list.name}} </label>
</div>
</section>
当每个收音机被选中时,我想在 radioWrapper 中添加“selectedRadioBg”类。
感谢任何帮助