<input type="radio" name="gradio" class="fl" value="1" />
<input type="radio" name="gradio" class="fl" value="2"/>
js代码里怎么用 这种形式$("input[name='gradio'][value=1]").attr("checked",true);设置checked
<input type="radio" name="gradio" class="fl" value="1" />
<input type="radio" name="gradio" class="fl" value="2"/>
js代码里怎么用 这种形式$("input[name='gradio'][value=1]").attr("checked",true);设置checked
1 个回复
DCloud_UNI_FXY
document.querySelector("input[name='gradio'][value=1]").checked=true;