溫馨提示×

jquery怎么刪除標(biāo)簽屬性

小億
173
2023-08-15 09:24:23
欄目: 編程語言

要刪除一個標(biāo)簽的屬性,可以使用jQuery的removeAttr()方法。

語法如下:

$(selector).removeAttr(attributeName)

其中,selector是要選擇的元素,attributeName是要刪除的屬性名。

示例:

假設(shè)有一個<div>標(biāo)簽,有idclass屬性,我們可以使用以下代碼刪除class屬性:

$("div").removeAttr("class");

執(zhí)行以上代碼后,<div>標(biāo)簽的class屬性將被刪除。

0