前端之家收集整理的这篇文章主要介绍了
如何使用javascript禁用单选按钮? (不使用任何JS框架),
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如,我有像html这样的元素
<input type="radio" name="disableme" id=1> Animal
<input type="radio" name="disableme" id=2> Mammal
<input type="radio" name="disableme" id=3> Human
@H_
404_4@我试过,document.formName.disableme.disabled = true;但它没有奏效..
@H_
404_4@我可以使用Id来做到这一点.但我一口气需要它.
@H_
404_4@请帮忙.
@H_404_4@I tried like,document.formName.disableme.disabled = true; But it didn’t worked..
@H_
404_4@因为如果你有多个具有相同
名称的表单控件,你将获得一个
HTML Form Controls Collection.所以循环集合:
var radios = document.formName.disableme;
for (var i=0,iLen=radios.length; i<iLen; i++) {
radios[i].disabled = true;
}
@H_
404_4@无需
添加ID.
原文链接:https://www.f2er.com/js/156608.html