javascript删除元素属性的方法:首先使用“document.getelementbyid(id值)”语句根据id值获取元素对象;然后使用“元素对象.removeattribute(属性名称)”语句来删除元素的属性。
本教程操作环境:windows7系统、javascript1.8.5版、dell g3电脑。
在javascript中,可以使用removeattribute()方法来删除元素属性,语法:
removeattribute("属性名")
示例:
<h1 style="color:red">hello world</h1><p id="demo">点击按钮来删除标题中的 style 属性。</p><button onclick="myfunction()">试一下</button><script> function myfunction() { document.getelementsbytagname("h1")[0].removeattribute("style"); }</script>
效果图:
【推荐学习:javascript高级教程】
以上就是javascript怎么删除元素属性的详细内容。