HTML的removeAttribute()方法用于從指定元素中移除屬性。
使用方法如下:
element.removeAttribute(attributeName);
其中,element
是要操作的元素,attributeName
是要移除的屬性名。
示例:
<button id="myButton" disabled>點擊我</button>
<script>
var button = document.getElementById("myButton");
button.removeAttribute("disabled");
</script>
運行以上代碼后,disabled
屬性將被移除,按鈕將變為可點擊狀態。