easyuiradio取值和赋值1.html⽂件
<td><input id="client" type="text" name="client"
class="easyui-textbox"
data-options="required:true" />
;委托⼈证件类型:
<input id="certType1" type="radio" name="certType"
checked="checked" value="⾝份证"><label>⾝份证</label></input>
<input id="certType2" type="radio" name="certType"
value="护照"><label>护照</label></input>
</td>
2.js⽂件
/
/将委托⼈的信息进⾏赋值 radio
if (Type == "⾝份证") {
$("input[name='certType']").get(0).checked=true;
}else Type == "护照"){
$("input[name='certType']").get(1).checked=true;
}
html radio点击变颜亲测有效。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论