removeAttribute 添加属性
时间: 2023-08-05 08:09:19 浏览: 59
您可以使用 JavaScript 中的 `removeAttribute` 方法来删除 HTML 元的属性。这个方法可以用于任何 HTML 元素。
下面是一个示例,演示如何使用 `removeAttribute` 方法来删除一个元素的属性:
```html
<!DOCTYPE html>
<html>
<body>
<h2>示例</h2>
<button id="myButton" class="btn">点击我</button>
<script>
// 获取元素
var button = document.getElementById("myButton");
// 删除属性
button.removeAttribute("class");
// 输出结果
console.log(button);
</script>
</body>
</html>
```
在上面的例子中,我们首先通过 `getElementById` 方法获取了一个按钮元素。然后,使用 `removeAttribute` 方法删除了按钮的 `class` 属性。最后,通过 `console.log` 打印了按钮元素,以便您可以查看删除属性后的结果。
希望这个例子能帮助到您!如果您有任何其他问题,请随时提问。
阅读全文