简单教程
提交运行
代码编辑器:
<script> function displayResult(){ var x=document.getElementById("red").type; alert(x); } </script> <form> 你更喜欢哪种颜色?<br> <input type="radio" name="colors" id="red">红色<br> <input type="radio" name="colors" id="blue">蓝色<br> <input type="radio" name="colors" id="green">绿色 </form> <button type="button" onclick="displayResult()">显示 input 类型</button>
运行结果: