代码编辑器:
x
1
<form>
2
猫:<input type="radio" name="pet" id="cats"><br>
3
狗:<input type="radio" name="pet" id="dogs">
4
</form>
5
<p>单击下面的按钮禁用第一个单选框</p>
6
<button onclick="disableElement()">禁用单选框按钮</button>
7
<script>
8
function disableElement(){
9
document.getElementById("cats").disabled=true;
10
}
11
</script>
12