亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

首頁課程jQuery Fun ClassDelete attributes

Delete attributes

目錄列表

刪除屬性

您還可以從HTML元素中刪除屬性。

removeAttr()方法用于刪除元素的任何屬性。

在下面的示例中,我們刪除了表的邊框和類屬性:

$("table").removeAttr("border");
$("table").removeAttr("class");


正確填空來刪除id =“text”的元素的border屬性。

$("").("");

1/2