要刪除一個標簽的屬性,可以使用jQuery的removeAttr()方法。
語法如下:
$(selector).removeAttr(attributeName)
其中,selector
是要選擇的元素,attributeName
是要刪除的屬性名。
示例:
假設有一個<div>
標簽,有id
和class
屬性,我們可以使用以下代碼刪除class
屬性:
$("div").removeAttr("class");
執行以上代碼后,<div>
標簽的class
屬性將被刪除。