标签:radio disabled ble select 配置 lse ted isa 问题
$("#swIdInForm").removeAttr("checked");
$("#swIdInForm").attr("checked","true"); // 重新增加不起作用
在使用removeAttr()移除了radio的checked属性后,使用attr()重新增加不起作用;
$("#swIdInForm").removeAttr("checked"); $("#swIdInForm").prop(‘checked‘,true);
使用prop()重新配置该属性
注意:具有 true 和 false 两个属性的,如 checked, selected 或者 disabled 使用prop(),其他的使用 attr()。
未完。。。
JQuery中prop和attr的区别,checked添加和删除
标签:radio disabled ble select 配置 lse ted isa 问题
原文地址:https://www.cnblogs.com/trnanks/p/11332489.html