禁用单选按钮有哪些不同的方法。
我尝试了下面的示例,但是在我的环境设置中没有在我的系统中工作。如果我在没有环境的情况下尝试记事本,它的工作原理。还有其他方法吗?
var status = 'A';
$("input[type=radio][value=" + status + "]").attr("disabled",true);
答案 0 :(得分:2)
试试这个:
$("input[type=radio][value=" + status + "]").prop("disabled",true);
答案 1 :(得分:1)
我能够在HTML中使用已停用的UPDATED CODE
<div id="cosProfile">CoS Profile</div>
<span class="icon-information"></span>
<div class="form-field" data-radio id="cosRadioBtns">
<span id="radio_prdefined"><input type="radio" name="CosProfile" data-radio
value="predefined" checked="checked" disabled/></span>
<label id="cos_predefined">Predefined Profile</label>
<span id="radio_custom"><input type="radio" name="CosProfile" data-radio
value="custom" disabled/></span>
<label id="cos_custom">Custom Profile</label>
</div>