easyUI 单选按钮回显 与隐藏

[color=red]检查结果为合格时,显示合格证号,并且为必填, 否则就隐藏合格证号,并且不必填[/color]


<tr>
<th width="15%">检验结果</th>
<td width="35%">
<span class="radioSpan">
<input type="radio" name="deteresult" value="01" checked="checked" οnclick="checkIsMin(this.value)">合格</input>    
<input type="radio" name="deteresult" value="02" οnclick="checkIsMin(this.value)">不合格</input>
</span>
</td>
<th width="15%" class="jyhgzh">检验合格证号</th>
<td class="jyhgzh">
<input type="text" value="${model.detecertificate}" name="detecertificate" id="detecertificate" class="easyui-textbox" required="true" data-options="validType:length[0,50]"/>
</td>
</tr>


[color=red]//检验结果改变加载事件[/color]
$("input[name='deteresult']").each(function(){
if('${model.deteresult}'==$(this).val()){
$(this).prop("checked",true);
if($(this).val()=='02'){
$('.jyhgzh').attr("style","display:none");
$("#detecertificate").textbox({ required:false });
}
}
});

[color=red]//检查是否合格,不合格就隐藏合格证号[/color]
function checkIsMin(value){
if(value=="01"){
$(".jyhgzh").removeAttr("style");
$("#detecertificate").textbox({ required:true });
}
if(value=="02"){

$('.jyhgzh').attr("style","display:none");
$("#detecertificate").textbox({ required:false });


}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值