JavaScript 参考手册
HTML DOM setAttribute() 方法
设置 input元素的的属性类型
源代码:
点击运行 »
<input value="OK"> <p id="demo">点击下面的按钮来设置按钮的类型属性。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementsByTagName("INPUT")[0].setAttribute("type", "button"); }; </script> <p>Internet Explorer 8 及更早的版本不支持 setAttribute 方法。</p>
运行结果:
点击运行 »