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