选中radio或者checkbox需要注意的是:
不管<input type=‘radio checked=‘true‘‘> 你的checked属性值是true或者false,他都会选中。
选中不选中,不是看checked的属性值,而是看有没有checked这个属性,所以,动态选中,不用v-model,也不用checked=‘true‘,只需要判断渲染checked这个属性就好了.
不多说了,直接上代码
<div v-for="(item,index) in product_test" > <input name="Fruit" class="input-fruit" :checked="product_test_index_selected==index?true:false" type="radio" @change="onRadioChange(index)"> </div>
js部分
data() { return { product_test_index_selected: 0, // radio默认选择第一个 }; }, onRadioChange(index) { this.product_test_show_index_selected = index; },
想实现每次点击之后选项默认选择为第一个,需要在使用完 product_test_index_selected 之后,将其更新为0,表示radio选中第一个
原文地址:https://www.cnblogs.com/cap-rq/p/10351584.html
时间: 2024-11-09 18:03:31