removeAttribute是JavaScript中的一個實用操作,用于從一個HTML元素中移除指定的屬性。
語法:
element.removeAttribute(attributeName)
參數說明:
示例:
假設我們有一個元素,并且它有一個名為"disabled"的禁用屬性。我們可以使用removeAttribute操作來移除這個禁用屬性。
var btn = document.querySelector("button"); btn.removeAttribute("disabled");
這樣,我們就成功地從元素中移除了"disabled"屬性。
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529