专注前端素材!
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>素材8网教程(study.sucai8.cn)</title> </head> <body> <input type="button" value="OK"> <p id="demo">单击下面的按钮删除上面元素的属性类型。</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var btn=document.getElementsByTagName("INPUT")[0]; btn.attributes.removeNamedItem("type"); } </script> <p><strong>注意:</strong> 当删除一个输入元素的type属性,元素的类型将变成<em> text</em>,这是默认值。</p> <p><strong>注意:</strong> In Internet Explorer 8 及更早的版本中,removedNamedItem也将返回属性值,但是不会移除属性。</p> </body> </html>
运行结果