1 <script type="text/javascript"> 2 3 window.onload = function () { 4 var btn = document.getElementById("btn"); 5 6 btn.onclick = function () { 7 btn.type = "checkbox"; 8 } 9 10 11 } 12 </script> 13 14 <input type="button" id="btn" />
不兼容 IE6 7 8
可以用js很巧妙的回避,点击的时候隐藏该按钮,然后显示下边的复选框即可。
回避不让做的事,用其他方法达到视觉上的效果即可。