扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

HTML的removeAttribute()方法怎么用

扬州沐宇科技
2023-09-05 01:08:26
html

HTML的removeAttribute()方法用于从指定元素中移除属性。

使用方法如下:

element.removeAttribute(attributeName);

其中,element是要操作的元素,attributeName是要移除的属性名。

示例:

<button id="myButton" disabled>点击我</button>
<script>
var button = document.getElementById("myButton");
button.removeAttribute("disabled");
</script>

运行以上代码后,disabled属性将被移除,按钮将变为可点击状态。

扫码添加客服微信