简单教程
提交运行
代码编辑器:
<script> function displayResult(){ var x=document.getElementById("check1").type; alert(x); } </script> <form> <input type="checkbox" id="check1">你喜欢夏天吗? </form> <button type="button" onclick="displayResult()">显示 input 类型</button>
运行结果: