HTML的removeAttribute()方法用于从指定元素中移除属性。
使用方法如下:
element.removeAttribute(attributeName);
其中,element
是要操作的元素,attributeName
是要移除的属性名。
示例:
<button id="myButton" disabled>点击我</button>
<script>
var button = document.getElementById("myButton");
button.removeAttribute("disabled");
</script>
运行以上代码后,disabled
属性将被移除,按钮将变为可点击状态。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: HTML 限制文本框只能输入数字